Changeset 6218 for code/branches/presentation2/src/libraries/core
- Timestamp:
- Dec 2, 2009, 10:20:37 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation2/src/libraries/core/ConfigValueContainer.h
r5738 r6218 146 146 if ((this->callback_ && object) || this->bContainerIsNew_) 147 147 { 148 if (this->bContainerIsNew_)149 this->bContainerIsNew_ = false;150 151 148 T temp = *value; 152 149 this->value_.getValue(value); 153 if ( (*value) != temp)150 if (this->bContainerIsNew_ || (*value) != temp) 154 151 { 155 152 if (this->callback_ && object) … … 158 155 this->bDoInitialCallback_ = true; 159 156 } 157 158 if (this->bContainerIsNew_) 159 this->bContainerIsNew_ = false; 160 160 } 161 161 else
Note: See TracChangeset
for help on using the changeset viewer.