summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2011-09-30 17:23:47 (GMT)
committerRemko Tronçon <git@el-tramo.be>2011-09-30 17:23:47 (GMT)
commit491413211a2f74a4c6b4112356dd6ea9c9484c92 (patch)
tree74054e35fdcd2fef478e14a31294d916f2c5a16a /Swift/QtUI/QtXMLConsoleWidget.h
parent75818abb4baa26649baf8d3bf6709aefcda7195f (diff)
downloadswift-contrib-491413211a2f74a4c6b4112356dd6ea9c9484c92.zip
swift-contrib-491413211a2f74a4c6b4112356dd6ea9c9484c92.tar.bz2
Avoid beautifying in console widget.
The beautifier is not representing the actual data sent, which is confusing.
Diffstat (limited to 'Swift/QtUI/QtXMLConsoleWidget.h')
-rw-r--r--Swift/QtUI/QtXMLConsoleWidget.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/Swift/QtUI/QtXMLConsoleWidget.h b/Swift/QtUI/QtXMLConsoleWidget.h
index c22251f..912ad90 100644
--- a/Swift/QtUI/QtXMLConsoleWidget.h
+++ b/Swift/QtUI/QtXMLConsoleWidget.h
@@ -8,20 +8,18 @@
#include "Swift/Controllers/UIInterfaces/XMLConsoleWidget.h"
#include "QtTabbable.h"
class QTextEdit;
class QCheckBox;
class QColor;
namespace Swift {
- class XMLBeautifier;
-
class QtXMLConsoleWidget : public QtTabbable, public XMLConsoleWidget {
Q_OBJECT
public:
QtXMLConsoleWidget();
~QtXMLConsoleWidget();
void show();
void activate();
@@ -32,12 +30,11 @@ namespace Swift {
private:
virtual void closeEvent(QCloseEvent* event);
virtual void showEvent(QShowEvent* event);
void appendTextIfEnabled(const std::string& data, const QColor& color);
private:
QTextEdit* textEdit;
QCheckBox* enabled;
- XMLBeautifier* beautifier;
};
}