summaryrefslogtreecommitdiff
path: root/src/commandhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-05-09 23:25:54 +0300
committerAndrei Karas <akaras@inbox.ru>2011-05-09 23:25:54 +0300
commitf0c21ce1cad60cbbaefda93f9f298fb6761392a4 (patch)
treedfffff35ece4684655c5f8368d55f4be699ebf4e /src/commandhandler.cpp
parent4561ae35f7c2c641e5dd0070b6cd3779dad0275b (diff)
downloadplus-f0c21ce1cad60cbbaefda93f9f298fb6761392a4.tar.gz
plus-f0c21ce1cad60cbbaefda93f9f298fb6761392a4.tar.bz2
plus-f0c21ce1cad60cbbaefda93f9f298fb6761392a4.tar.xz
plus-f0c21ce1cad60cbbaefda93f9f298fb6761392a4.zip
Fix code style.
Diffstat (limited to 'src/commandhandler.cpp')
-rw-r--r--src/commandhandler.cpp6
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
}