diff options
Diffstat (limited to 'kommander/widgets/combobox.h')
-rw-r--r-- | kommander/widgets/combobox.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/kommander/widgets/combobox.h b/kommander/widgets/combobox.h index 916846d9..6dd4fb71 100644 --- a/kommander/widgets/combobox.h +++ b/kommander/widgets/combobox.h @@ -20,9 +20,9 @@ /* KDE INCLUDES */ /* QT INCLUDES */ -#include <qstringlist.h> -#include <qobject.h> -#include <qstring.h> +#include <tqstringlist.h> +#include <tqobject.h> +#include <tqstring.h> /* OTHER INCLUDES */ #include <kcombobox.h> @@ -35,35 +35,35 @@ class KOMMANDER_EXPORT ComboBox : public KComboBox, public KommanderWidget { Q_OBJECT - Q_PROPERTY(QString populationText READ populationText WRITE setPopulationText DESIGNABLE false) - Q_PROPERTY(QStringList associations READ associatedText WRITE setAssociatedText DESIGNABLE false) + Q_PROPERTY(TQString populationText READ populationText WRITE setPopulationText DESIGNABLE false) + Q_PROPERTY(TQStringList associations READ associatedText WRITE setAssociatedText DESIGNABLE false) Q_PROPERTY(bool KommanderWidget READ isKommanderWidget) public: - ComboBox(QWidget *a_parent, const char *a_name); + ComboBox(TQWidget *a_parent, const char *a_name); ~ComboBox(); virtual bool isKommanderWidget() const; - virtual void setAssociatedText(const QStringList&); - virtual QStringList associatedText() const; - virtual QString currentState() const; - virtual QString populationText() const; - virtual void setPopulationText(const QString&); + virtual void setAssociatedText(const TQStringList&); + virtual TQStringList associatedText() const; + virtual TQString currentState() const; + virtual TQString populationText() const; + virtual void setPopulationText(const TQString&); - virtual QString handleDCOP(int function, const QStringList& args); + virtual TQString handleDCOP(int function, const TQStringList& args); virtual bool isFunctionSupported(int function); public slots: - virtual void setWidgetText(const QString&); + virtual void setWidgetText(const TQString&); virtual void populate(); virtual void emitWidgetTextChanged(int); signals: void widgetOpened(); - void widgetTextChanged(const QString&); + void widgetTextChanged(const TQString&); void contextMenuRequested(int xpos, int ypos); protected: - void showEvent(QShowEvent *e); - void contextMenuEvent( QContextMenuEvent * e ); + void showEvent(TQShowEvent *e); + void contextMenuEvent( TQContextMenuEvent * e ); private: }; |