diff options
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 |