imagingmodules/jp2kcodec/Src/JP2KUtils.cpp
branchCompilerCompatibility
changeset 7 90de155e514a
parent 4 3993b8f65362
--- a/imagingmodules/jp2kcodec/Src/JP2KUtils.cpp	Mon Mar 08 21:44:42 2010 +0000
+++ b/imagingmodules/jp2kcodec/Src/JP2KUtils.cpp	Sun Mar 14 13:15:20 2010 +0000
@@ -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 )