Changeset 977 for branches/Carsten_PtrWork/Source/System/Cluster/Window/SortFirst/OSGSortFirstWindowBase.cpp
- Timestamp:
- 10/20/07 18:35:18 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Carsten_PtrWork/Source/System/Cluster/Window/SortFirst/OSGSortFirstWindowBase.cpp
r976 r977 281 281 { 282 282 editMField(RegionFieldMask, _mfRegion); 283 _mfRegion.push_back( UInt32(value));283 _mfRegion.push_back(value); 284 284 } 285 285 … … 301 301 fieldIt += uiIndex; 302 302 303 _mfRegion.insert(fieldIt, UInt32(value));303 _mfRegion.insert(fieldIt, value); 304 304 } 305 305 … … 322 322 UInt32 const &pNewElem ) 323 323 { 324 Int32 elemIdx = _mfRegion.findIndex( UInt32(pOldElem));324 Int32 elemIdx = _mfRegion.findIndex(pOldElem); 325 325 326 326 if(elemIdx != -1) … … 353 353 SortFirstWindowBase::subRegion(UInt32 const &value) 354 354 { 355 Int32 iElemIdx = _mfRegion.findIndex( UInt32(value));355 Int32 iElemIdx = _mfRegion.findIndex(value); 356 356 357 357 if(iElemIdx != -1)
