diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:25:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:25:18 +0000 |
commit | aa3a1ca934bc541bddd3fa136a85f106f7da266e (patch) | |
tree | 9ad0b795aed8fa4ac30c2fe0fd1aacb8175714c0 /kdat/LoggerWidget.h | |
parent | b10cf7066791a2f362495890cd50c984e8025412 (diff) | |
download | tdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.tar.gz tdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeadmin@1157635 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdat/LoggerWidget.h')
-rw-r--r-- | kdat/LoggerWidget.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kdat/LoggerWidget.h b/kdat/LoggerWidget.h index 76afb78..3c57d68 100644 --- a/kdat/LoggerWidget.h +++ b/kdat/LoggerWidget.h @@ -19,16 +19,16 @@ #ifndef _LoggerWidget_h_ #define _LoggerWidget_h_ -#include <qwidget.h> +#include <tqwidget.h> class QMultiLineEdit; /** * @short A titled logging widget with a save option. */ -class LoggerWidget : public QWidget { +class LoggerWidget : public TQWidget { Q_OBJECT - QMultiLineEdit* _mle; + TQMultiLineEdit* _mle; public: /** * Create a titled logging widget @@ -37,7 +37,7 @@ public: * @param parent The parent widget. * @param name The name of this widget. */ - LoggerWidget( const QString & title, QWidget* parent = 0, const char* name = 0 ); + LoggerWidget( const TQString & title, TQWidget* parent = 0, const char* name = 0 ); /** * Destroy the logging widget. @@ -50,7 +50,7 @@ public: * * @param text The text to append. */ - void append( const QString & text ); + void append( const TQString & text ); public slots: /** * Prompt the user for a file name, and save the contents of the log to |