Show
Ignore:
Timestamp:
10/20/07 18:35:18 (1 year ago)
Author:
cneumann
Message:

fixed: namespace problem in template files

missing files

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/Carsten_PtrWork/Source/System/Cluster/Window/SortFirst/OSGSortFirstWindowBase.cpp

    r976 r977  
    281281{ 
    282282    editMField(RegionFieldMask, _mfRegion); 
    283     _mfRegion.push_back(UInt32(value)); 
     283    _mfRegion.push_back(value); 
    284284} 
    285285 
     
    301301    fieldIt += uiIndex; 
    302302 
    303     _mfRegion.insert(fieldIt, UInt32(value)); 
     303    _mfRegion.insert(fieldIt, value); 
    304304} 
    305305 
     
    322322    UInt32 const &pNewElem ) 
    323323{ 
    324     Int32  elemIdx = _mfRegion.findIndex(UInt32(pOldElem)); 
     324    Int32  elemIdx = _mfRegion.findIndex(pOldElem); 
    325325 
    326326    if(elemIdx != -1) 
     
    353353SortFirstWindowBase::subRegion(UInt32 const &value) 
    354354{ 
    355     Int32 iElemIdx = _mfRegion.findIndex(UInt32(value)); 
     355    Int32 iElemIdx = _mfRegion.findIndex(value); 
    356356 
    357357    if(iElemIdx != -1)