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/client/screen.c | |
| parent | a0939379bb1185ee6d66739d9d021466d5d89624 (diff) | |
Revised methods how are translated strings handled
Few comments were made available to Doxygen
Diffstat (limited to 'src/client/screen.c')
| -rw-r--r-- | src/client/screen.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/screen.c b/src/client/screen.c index 2e8822d..476cf3e 100644 --- a/src/client/screen.c +++ b/src/client/screen.c @@ -56,7 +56,7 @@ void screen_register(screen_t *p) { assert(p != NULL); - DEBUG_MSG(_("[Debug] Registering screen [%s]\n"), p->name); + debug("Registering screen [%s]", p->name); list_add(listScreen, p); } @@ -103,14 +103,14 @@ void screen_switch() layer_flush(); if (currentScreen != NULL) { - DEBUG_MSG(_("[Debug] Stopping screen [%s]\n"), currentScreen->name); + debug("Stopping screen [%s]", currentScreen->name); currentScreen->fce_stop(); } currentScreen = futureScreen; futureScreen = NULL; - DEBUG_MSG(_("[Debug] Starting screen [%s]\n"), currentScreen->name); + debug("Starting screen [%s]", currentScreen->name); currentScreen->fce_start(); } |