diff -r 469c91dae73b -r 3993b8f65362 imagingmodules/jp2kcodec/Src/JP2KUtils.cpp --- a/imagingmodules/jp2kcodec/Src/JP2KUtils.cpp Thu Dec 17 09:22:31 2009 +0200 +++ b/imagingmodules/jp2kcodec/Src/JP2KUtils.cpp Sat Feb 20 00:07:53 2010 +0200 @@ -47,12 +47,12 @@ // ============================ MEMBER FUNCTIONS =============================== // ----------------------------------------------------------------------------- -// TJ2kUtils::Ceil +// TJ2kUtils::CeilL // Get the ceiling between two integers. // (other items were commented in a header). // ----------------------------------------------------------------------------- // -TInt32 TJ2kUtils::Ceil( TInt32 aL, TInt32 aR ) +TInt32 TJ2kUtils::CeilL( TInt32 aL, TInt32 aR ) { // Check that no divided by zero calculation are done. if ( aR == 0 ) @@ -84,12 +84,12 @@ } // ----------------------------------------------------------------------------- -// TJ2kUtils::Floor +// TJ2kUtils::FloorL // Get the floor between two integers. // (other items were commented in a header). // ----------------------------------------------------------------------------- // -TInt32 TJ2kUtils::Floor( TInt32 aL, TInt32 aR ) +TInt32 TJ2kUtils::FloorL( TInt32 aL, TInt32 aR ) { // Check that no divided by zero calculation are done. if ( aR == 0 ) @@ -108,12 +108,12 @@ } // ----------------------------------------------------------------------------- -// TJ2kUtils::Div +// TJ2kUtils::DivL // Get the quotient and remainder. // (other items were commented in a header). // ----------------------------------------------------------------------------- // -TDiv TJ2kUtils::Div( TInt aNum, TInt aDenom ) +TDiv TJ2kUtils::DivL( TInt aNum, TInt aDenom ) { // Check that no divided by zero calculation are done. if ( aDenom == 0 )