diff options
Diffstat (limited to 'kdict/applet/kdictapplet.h')
-rw-r--r-- | kdict/applet/kdictapplet.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/kdict/applet/kdictapplet.h b/kdict/applet/kdictapplet.h index a9738148..99a7cec4 100644 --- a/kdict/applet/kdictapplet.h +++ b/kdict/applet/kdictapplet.h @@ -20,7 +20,7 @@ #ifndef _DICTAPPLET_H_ #define _DICTAPPLET_H_ -#include <qhbox.h> +#include <tqhbox.h> #include <kpanelapplet.h> class QLabel; @@ -47,7 +47,7 @@ public slots: void enablePopup(); protected: - void hideEvent(QHideEvent *); + void hideEvent(TQHideEvent *); private: bool popupEnabled; @@ -61,22 +61,22 @@ class DictApplet : public KPanelApplet Q_OBJECT public: - DictApplet(const QString& configFile, Type t = Stretch, int actions = 0, QWidget *parent = 0, const char *name = 0); + DictApplet(const TQString& configFile, Type t = Stretch, int actions = 0, TQWidget *parent = 0, const char *name = 0); virtual ~DictApplet(); int widthForHeight(int height) const; int heightForWidth(int width) const; protected: - void resizeEvent(QResizeEvent*); - bool eventFilter( QObject *, QEvent * ); + void resizeEvent(TQResizeEvent*); + bool eventFilter( TQObject *, TQEvent * ); - void sendCommand(const QCString &fun, const QString &data); + void sendCommand(const TQCString &fun, const TQString &data); protected slots: void sendDelayedCommand(); - void startQuery(const QString&); - void comboTextChanged(const QString&); + void startQuery(const TQString&); + void comboTextChanged(const TQString&); void queryClipboard(); void startDefine(); void startMatch(); @@ -87,14 +87,14 @@ protected slots: private: KHistoryCombo *internalCombo, *externalCombo; KCompletion *completionObject; - QLabel *textLabel, *iconLabel; - QPushButton *verticalBtn, *clipboardBtn, *defineBtn, *matchBtn; - QWidget *baseWidget; + TQLabel *textLabel, *iconLabel; + TQPushButton *verticalBtn, *clipboardBtn, *defineBtn, *matchBtn; + TQWidget *baseWidget; PopupBox *popupBox; int waiting; - QCString delayedFunc; - QString delayedData; + TQCString delayedFunc; + TQString delayedData; }; |