Show
Ignore:
Timestamp:
05/27/08 08:13:17 (5 months ago)
Author:
vossg
Message:

removed: old c-style casts as these hide edit/get mixups

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Source/System/Cluster/Window/Base/OSGImageComposer.cpp

    r1198 r1249  
    297297        if(maxy >= height) maxy = height-1; 
    298298 
    299         l=(Int32)minx
    300         b=(Int32)miny
    301         r=(Int32)maxx
    302         t=(Int32)maxy
     299        l= Int32(minx)
     300        b= Int32(miny)
     301        r= Int32(maxx)
     302        t= Int32(maxy)
    303303 
    304304/* 
     
    307307*/ 
    308308 
    309         front = (UInt32)( (double)(((UInt64)1)<<32) * (minz+1) / 2); 
    310         back  = (UInt32)( (double)(((UInt64)1)<<32) * (maxz+1) / 2); 
     309        front = UInt32( double((UInt64(1))<<32) * (minz+1) / 2); 
     310        back  = UInt32( double((UInt64(1))<<32) * (maxz+1) / 2); 
    311311    } 
    312312