summaryrefslogtreecommitdiffstats
path: root/common/console.cpp
diff options
context:
space:
mode:
authorAaron Seigo <aseigo@kde.org>2014-12-15 19:28:05 +0100
committerAaron Seigo <aseigo@kde.org>2014-12-15 19:28:05 +0100
commit3dd90236e7927028ff5c98635f8075189c9869c2 (patch)
treeaefb7ce4e698b6c9d6993546d5e437a61d7ce4e3 /common/console.cpp
parentcb0f5fb769380db5771ff8e0dba8d780cdc92edb (diff)
downloadsink-3dd90236e7927028ff5c98635f8075189c9869c2.tar.gz
sink-3dd90236e7927028ff5c98635f8075189c9869c2.zip
namespace everything in libs with Akonadi2
Diffstat (limited to 'common/console.cpp')
-rw-r--r--common/console.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/common/console.cpp b/common/console.cpp
index 6fb174a..a878355 100644
--- a/common/console.cpp
+++ b/common/console.cpp
@@ -5,6 +5,9 @@
5#include <QTextBrowser> 5#include <QTextBrowser>
6#include <QVBoxLayout> 6#include <QVBoxLayout>
7 7
8namespace Akonadi2
9{
10
8static Console *s_console = 0; 11static Console *s_console = 0;
9 12
10Console *Console::main() 13Console *Console::main()
@@ -53,3 +56,5 @@ void Console::log(const QString &message)
53{ 56{
54 m_textDisplay->append(QString::number(m_timestamper.elapsed()).rightJustified(6) + ": " + message); 57 m_textDisplay->append(QString::number(m_timestamper.elapsed()).rightJustified(6) + ": " + message);
55} 58}
59
60} // namespace Akonadi2