summaryrefslogtreecommitdiffstats
path: root/common/console.h
diff options
context:
space:
mode:
authorAaron Seigo <aseigo@kde.org>2014-12-02 13:49:30 +0100
committerAaron Seigo <aseigo@kde.org>2014-12-02 13:54:04 +0100
commit62fa6f942e600b69a98b35fe1afcbc03139e8c47 (patch)
tree02a2c155190184875783679d747b44d1beb0b4de /common/console.h
parentcd99c2a9649d1e1639dfa9fc7590f2e5af89335a (diff)
downloadsink-62fa6f942e600b69a98b35fe1afcbc03139e8c47.tar.gz
sink-62fa6f942e600b69a98b35fe1afcbc03139e8c47.zip
timestamp messages and use a fixed font for the output
Diffstat (limited to 'common/console.h')
-rw-r--r--common/console.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/common/console.h b/common/console.h
index d504fb1..d36ce05 100644
--- a/common/console.h
+++ b/common/console.h
@@ -1,5 +1,6 @@
1#pragma once 1#pragma once
2 2
3#include <QTime>
3#include <QWidget> 4#include <QWidget>
4 5
5class QTextBrowser; 6class QTextBrowser;
@@ -16,5 +17,6 @@ public:
16 17
17private: 18private:
18 QTextBrowser *m_textDisplay; 19 QTextBrowser *m_textDisplay;
20 QTime m_timestamper;
19 static Console *s_output; 21 static Console *s_output;
20}; \ No newline at end of file 22};