wmdrm/camese/inc/cameselog.inl
changeset 23 493788a4a8a4
parent 0 95b198f216e5
--- a/wmdrm/camese/inc/cameselog.inl	Tue Feb 02 00:21:44 2010 +0200
+++ b/wmdrm/camese/inc/cameselog.inl	Fri Apr 16 15:14:55 2010 +0300
@@ -17,7 +17,7 @@
 
 
 // INCLUDE FILES
-#include <E32SVR.H>
+#include <e32svr.h>
 
 // ----------------------------------------------------------------------------
 // Write a string to the log - 16 bit version
@@ -35,7 +35,7 @@
             EFileLoggingModeAppend, msgPtr.Left(100));
         offSet += 100;  //set to 100
         };
-    RDebug::Print(aFmt);        
+    RDebug::Print(aFmt);
     }
 
 // ----------------------------------------------------------------------------
@@ -71,11 +71,11 @@
             EFileLoggingModeAppend, msgPtr.Left(100));
         offSet += 100;  //set to 100
         };
-    
+
     HBufC* buf16 = HBufC::NewLC(aFmt.Length());
     buf16->Des().Copy(aFmt);
     RDebug::Print(*buf16);
-    CleanupStack::PopAndDestroy(buf16);    
+    CleanupStack::PopAndDestroy(buf16);
     }
 
 // ----------------------------------------------------------------------------