diff options
Diffstat (limited to 'kandy/src/kandyview.h')
-rw-r--r-- | kandy/src/kandyview.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/kandy/src/kandyview.h b/kandy/src/kandyview.h index 259ee6c78..ed5171cac 100644 --- a/kandy/src/kandyview.h +++ b/kandy/src/kandyview.h @@ -24,7 +24,7 @@ #ifndef KANDYVIEW_H #define KANDYVIEW_H -#include <qwidget.h> +#include <tqwidget.h> class QPainter; class QTextStream; @@ -55,7 +55,7 @@ class KandyView : public QWidget /** * Default constructor */ - KandyView(CommandScheduler *,QWidget *parent); + KandyView(CommandScheduler *,TQWidget *parent); /** * Destructor @@ -71,10 +71,10 @@ class KandyView : public QWidget /** * Print this view to any medium -- paper or not */ - void print(QPainter *, int height, int width); + void print(TQPainter *, int height, int width); - bool loadFile(const QString& filename); - bool saveFile(const QString& filename); + bool loadFile(const TQString& filename); + bool saveFile(const TQString& filename); void setModified(bool modified=true); bool isModified(); @@ -89,12 +89,12 @@ class KandyView : public QWidget /** * Use this signal to change the content of the statusbar */ - void signalChangeStatusbar(const QString& text); + void signalChangeStatusbar(const TQString& text); /** * Use this signal to change the content of the caption */ - void signalChangeCaption(const QString& text); + void signalChangeCaption(const TQString& text); void modifiedChanged(bool); @@ -104,21 +104,21 @@ class KandyView : public QWidget void setResult(ATCommand *); private slots: - void slotSetTitle(const QString& title); + void slotSetTitle(const TQString& title); void processLastLine(); private: - QString mLastInput; + TQString mLastInput; CommandScheduler *mScheduler; bool mModified; - QListView *mCommandList; + TQListView *mCommandList; - QTextEdit *mInput; - QTextEdit *mOutput; - QTextEdit *mResultView; + TQTextEdit *mInput; + TQTextEdit *mOutput; + TQTextEdit *mResultView; }; #endif // KANDYVIEW_H |