Bug 2169 - Remove unnecessary token pasting and over-qualification of method names
authorPeter Fordham <peter.fordham@gmail.com>
Fri, 05 Mar 2010 16:56:45 -0800
changeset 16 bea8e7dfa800
parent 15 5325df355191
child 17 32e38c512cab
child 41 05c4136f4a79
Bug 2169 - Remove unnecessary token pasting and over-qualification of method names
usbclasses/usbphoneasmodem/classimplementation/atplugin/inc/pamengine.h
usbengines/usbwatcher/inc/debug.h
--- a/usbclasses/usbphoneasmodem/classimplementation/atplugin/inc/pamengine.h	Fri Mar 05 16:54:04 2010 -0800
+++ b/usbclasses/usbphoneasmodem/classimplementation/atplugin/inc/pamengine.h	Fri Mar 05 16:56:45 2010 -0800
@@ -50,8 +50,8 @@
 	* @param aOwner
 	* @return Instance of CPamEngine
 	*/
-	static CPamEngine* CPamEngine::NewL( CPamPlugin* aOwner );
-						   
+	static CPamEngine* NewL( CPamPlugin* aOwner );
+
 	/**
 	* Two-phased contructor
 	* @param aOwner
--- a/usbengines/usbwatcher/inc/debug.h	Fri Mar 05 16:54:04 2010 -0800
+++ b/usbengines/usbwatcher/inc/debug.h	Fri Mar 05 16:56:45 2010 -0800
@@ -109,13 +109,13 @@
 #define LOG( str ) { RDebug::Printf( "[%08x] ["MODULE_NAME"] %s",\
         TUint(RThread().Id()), str  ); }
 
-#define LOG1( s, v ) { RDebug::Printf( "[%08x] ["MODULE_NAME"] "##s ,\
+#define LOG1( s, v ) { RDebug::Printf( "[%08x] ["MODULE_NAME"] " s ,\
         TUint(RThread().Id()), v ); }
 
-#define LOG2( s, v1,v2 ) { RDebug::Printf( "[%08x] ["MODULE_NAME"] "##s , \
+#define LOG2( s, v1,v2 ) { RDebug::Printf( "[%08x] ["MODULE_NAME"] " s , \
         TUint(RThread().Id()), v1, v2 ); }
 
-#define LOG3( s, v1, v2, v3 ) { RDebug::Printf( "[%08x] ["MODULE_NAME"] "##s, \
+#define LOG3( s, v1, v2, v3 ) { RDebug::Printf( "[%08x] ["MODULE_NAME"] " s, \
         TUint(RThread().Id()), v1, v2, v3); }
 
 class TFuncLogger