diff options
Diffstat (limited to 'src/outputwidget.h')
-rw-r--r-- | src/outputwidget.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/outputwidget.h b/src/outputwidget.h index 8555fde..f300883 100644 --- a/src/outputwidget.h +++ b/src/outputwidget.h @@ -27,22 +27,22 @@ # include <config.h> #endif -#include <qtextedit.h> +#include <ntqtextedit.h> #include "global.h" // forward class definitions // ========================= -class KConfig; +class TDEConfig; // OutputWidget class definition // ============================= -class OutputWidget : public QTextEdit +class OutputWidget : public TQTextEdit { Q_OBJECT public: - OutputWidget( QWidget* parent = NULL, const char* name = NULL ); + OutputWidget( TQWidget* parent = NULL, const char* name = NULL ); // output type definitions // ======================= @@ -57,22 +57,22 @@ class OutputWidget : public QTextEdit void clearOutput( ); bool fileSave( const bool saveAs = false ); bool fileSaveAs( ); - void readProfile( KConfig* config ); - void saveProfile( KConfig* config ); + void readProfile( TDEConfig* config ); + void saveProfile( TDEConfig* config ); signals: - void statusBarText( const QString& ); + void statusBarText( const TQString& ); public slots: void slotUpdateStatusBarText( ); private: - void appendLine( const OutputType type, const QString& text ); + void appendLine( const OutputType type, const TQString& text ); bool m_append; uint m_dataBytes; bool m_firstSave; - QString m_path; + TQString m_path; OutputType m_priorType; }; |