diff options
Diffstat (limited to 'src/commandhandler.cpp')
-rw-r--r-- | src/commandhandler.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/commandhandler.cpp b/src/commandhandler.cpp index a20944ff2..41b901997 100644 --- a/src/commandhandler.cpp +++ b/src/commandhandler.cpp @@ -1082,7 +1082,9 @@ void CommandHandler::handleCacheInfo(const std::string &args _UNUSED_, debugChatTab->chatLog(strprintf("%s %d", _("Cache size:"), all)); #ifdef DEBUG_FONT_COUNTERS debugChatTab->chatLog(""); - debugChatTab->chatLog(strprintf("%s %d", _("Created:"), font->getCreateCounter())); - debugChatTab->chatLog(strprintf("%s %d", _("Deleted:"), font->getDeleteCounter())); + debugChatTab->chatLog(strprintf("%s %d", + _("Created:"), font->getCreateCounter())); + debugChatTab->chatLog(strprintf("%s %d", + _("Deleted:"), font->getDeleteCounter())); #endif } |