emailservices/emaildebug/inc/emailtrace.h
changeset 43 99bcbff212ad
parent 40 2c62ef3caffd
child 44 c2d07d913565
--- a/emailservices/emaildebug/inc/emailtrace.h	Mon May 24 21:02:02 2010 +0300
+++ b/emailservices/emaildebug/inc/emailtrace.h	Fri May 28 13:56:43 2010 +0300
@@ -58,10 +58,10 @@
 #endif /* DEBUG */
 
 /*
- * The function NM_COMMENT() prints a trace message. The INFO macros are
- * provided for legacy compatibility. They are deprecated and should not be
- * used. If sprintf() type of formatting is desired, consider using QString::
- * arg() or QTextStream.
+ * The function NM_COMMENT() prints a trace message. The INFO macros and the
+ * NMLOG macro are provided for legacy compatibility. They are deprecated and
+ * should not be used. If sprintf() type of formatting is desired, consider
+ * using QString::arg() or QTextStream.
  */
 #if COMMENT_TRACES
 
@@ -88,6 +88,7 @@
     __msg.sprintf(msg,arg1,arg2,arg3);\
     NM_COMMENT(__msg);\
 } while (0)
+#define NMLOG(msg) NM_COMMENT(msg)
 
 #else
 
@@ -96,6 +97,7 @@
 #define INFO_1(msg,arg1)
 #define INFO_2(msg,arg1,arg2)
 #define INFO_3(msg,arg1,arg2,arg3)
+#define NMLOG(msg)
 
 #endif /* COMMENT_TRACES */
 
@@ -177,7 +179,7 @@
     QString fn;
 };
 
-#define NM_FUNCTION __ftracer __ft(__PRETTY_FUNCTION__);
+#define NM_FUNCTION __ftracer __ft(__PRETTY_FUNCTION__)
 #define FUNC_LOG NM_FUNCTION
 
 #else