diff options
author | hjk <qthjk@ovi.com> | 2012-06-26 17:27:20 +0200 |
---|---|---|
committer | hjk <qthjk@ovi.com> | 2012-06-27 22:05:15 +0200 |
commit | ec06d3f1af287a18be36b2cc79b63ce9660ad3b7 (patch) | |
tree | 7c5fd2aa788ee78da1495a34f8a1f18835e0269f /src/plugins/debugger/logwindow.h | |
parent | f00487650072c6f811b2ef41b552aa81a0df6efa (diff) | |
download | qt-creator-ec06d3f1af287a18be36b2cc79b63ce9660ad3b7.tar.gz |
debugger: make shrinking of log buffer faster
Change-Id: I09ff0bf0c5fcc7df5c5dc9a05752754faee9320a
Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'src/plugins/debugger/logwindow.h')
-rw-r--r-- | src/plugins/debugger/logwindow.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/plugins/debugger/logwindow.h b/src/plugins/debugger/logwindow.h index 4bceac728f..a71db75e5e 100644 --- a/src/plugins/debugger/logwindow.h +++ b/src/plugins/debugger/logwindow.h @@ -47,6 +47,8 @@ QT_END_NAMESPACE namespace Debugger { namespace Internal { +class DebuggerPane; + class LogWindow : public QWidget { Q_OBJECT @@ -78,8 +80,8 @@ signals: void statusMessageRequested(const QString &msg, int); private: - QPlainTextEdit *m_combinedText; // combined input/output - QPlainTextEdit *m_inputText; // scriptable input alone + DebuggerPane *m_combinedText; // combined input/output + DebuggerPane *m_inputText; // scriptable input alone QLineEdit *m_commandEdit; QLabel *m_commandLabel; bool m_ignoreNextInputEcho; |