diff options
author | Timothy Pearson <[email protected]> | 2011-12-06 14:15:01 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-06 14:15:01 -0600 |
commit | 1b89319fd93b88313cab40f1e9de24c067b04efb (patch) | |
tree | 80132996de993c3dcab4040864d7729842875b2d /src/debugoutputtextedit.h | |
parent | d08a0ede1d2cb15bb14b0ff75eacf5c682b1fa0a (diff) | |
download | kvpnc-1b89319fd93b88313cab40f1e9de24c067b04efb.tar.gz kvpnc-1b89319fd93b88313cab40f1e9de24c067b04efb.zip |
Initial TQt conversion
Diffstat (limited to 'src/debugoutputtextedit.h')
-rw-r--r-- | src/debugoutputtextedit.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/debugoutputtextedit.h b/src/debugoutputtextedit.h index 09bfc08..7e4f965 100644 --- a/src/debugoutputtextedit.h +++ b/src/debugoutputtextedit.h @@ -21,8 +21,8 @@ #define DEBUGOUTPUTTEXTEDIT_H #include <ktextbrowser.h> -#include <qpopupmenu.h> -#include <qpoint.h> +#include <tqpopupmenu.h> +#include <tqpoint.h> /** This class is used for showing log content @@ -32,16 +32,17 @@ This class is used for showing log content class DebugOutputTextEdit : public KTextBrowser { Q_OBJECT + TQ_OBJECT public: - DebugOutputTextEdit( QWidget* parent=0, const char* name=0); + DebugOutputTextEdit( TQWidget* parent=0, const char* name=0); ~DebugOutputTextEdit(); public slots: - QPopupMenu* createPopupMenu(const QPoint & pos); - void append ( const QString & text ); + TQPopupMenu* createPopupMenu(const TQPoint & pos); + void append ( const TQString & text ); private: - QPopupMenu *popup; + TQPopupMenu *popup; }; |