diff options
Diffstat (limited to 'kommander/widgets/progressbar.h')
-rw-r--r-- | kommander/widgets/progressbar.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/kommander/widgets/progressbar.h b/kommander/widgets/progressbar.h index b4aa3d94..d54e1185 100644 --- a/kommander/widgets/progressbar.h +++ b/kommander/widgets/progressbar.h @@ -19,9 +19,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 <kprogress.h> @@ -34,29 +34,29 @@ class KOMMANDER_EXPORT ProgressBar: public KProgress, 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: - ProgressBar(QWidget *a_parent, const char *a_name); + ProgressBar(TQWidget *a_parent, const char *a_name); ~ProgressBar(); 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 populate(); signals: void widgetOpened(); protected: - void showEvent(QShowEvent *e); + void showEvent(TQShowEvent *e); private: }; |