diff options
| author | Michal Zima <xhire@mujmalysvet.cz> | 2009-12-06 22:58:26 +0100 |
|---|---|---|
| committer | Michal Zima <xhire@mujmalysvet.cz> | 2009-12-06 22:58:26 +0100 |
| commit | 753131cf9b32315fdd11f2ce6e58b8f2d6ba3bc1 (patch) | |
| tree | cfbded574ded7c3c666de6211877469ff6a95d75 /src/base/msg.h | |
| parent | a0939379bb1185ee6d66739d9d021466d5d89624 (diff) | |
Revised methods how are translated strings handled
Few comments were made available to Doxygen
Diffstat (limited to 'src/base/msg.h')
| -rw-r--r-- | src/base/msg.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/base/msg.h b/src/base/msg.h index a2f77e9..e9bdb3b 100644 --- a/src/base/msg.h +++ b/src/base/msg.h @@ -2,12 +2,6 @@ #define MSG_H #ifdef DEBUG -#define DEBUG_MSG(msg,arg...) printf(msg, ##arg) -#else /* DEBUG */ -#define DEBUG_MSG(msg,arg...) -#endif /* DEBUG * */ - -#ifdef DEBUG #define debug(msg,arg...) fprintf(stdout, "%s ", _("[Debug]")); fprintf(stdout, _(msg), ##arg); fprintf(stdout, "\n") #else /* DEBUG */ #define debug(msg,arg...) |