diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
commit | eba47f8f0637f451e21348187591e1f1fd58ac74 (patch) | |
tree | 448f10b95c656604acc331a3236c1e59bde5c1ad /kdvi/fontprogress.h | |
parent | c7e8736c69373f48b0401319757c742e8607431a (diff) | |
download | tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip |
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdvi/fontprogress.h')
-rw-r--r-- | kdvi/fontprogress.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kdvi/fontprogress.h b/kdvi/fontprogress.h index f9c7232b..6f4267cc 100644 --- a/kdvi/fontprogress.h +++ b/kdvi/fontprogress.h @@ -9,11 +9,11 @@ #define FONT_GENERATION_H #include <kdialogbase.h> -#include <qguardedptr.h> +#include <tqguardedptr.h> class KProcIO; class KProgress; -class QLabel; +class TQLabel; /** @@ -33,13 +33,13 @@ class fontProgressDialog : public KDialogBase Q_OBJECT public: - fontProgressDialog( const QString& helpIndex, const QString& label, const QString& abortTip, const QString& whatsThis, const QString& ttip, - QWidget* parent = 0, const QString &name = 0, bool progressbar=true ); + fontProgressDialog( const TQString& helpIndex, const TQString& label, const TQString& abortTip, const TQString& whatsThis, const TQString& ttip, + TQWidget* parent = 0, const TQString &name = 0, bool progressbar=true ); ~fontProgressDialog(); /** The number of steps already done is increased, the text received here is analyzed and presented to the user. */ - void increaseNumSteps(const QString& explanation); + void increaseNumSteps(const TQString& explanation); /** Used to initialize the progress bar. If the argument proc is non-zero, the associated process will be killed when the "abort" @@ -47,7 +47,7 @@ public: internally, so it is save to delete the KProcIO anytime. */ void setTotalSteps(int, KProcIO *proc=0); - QLabel* TextLabel2; + TQLabel* TextLabel2; private slots: /** Calling this slot does nothing than to kill the process that is @@ -55,10 +55,10 @@ private slots: void killProcIO(); private: - QLabel* TextLabel1; + TQLabel* TextLabel1; KProgress* ProgressBar1; int progress; - QGuardedPtr<KProcIO> procIO; + TQGuardedPtr<KProcIO> procIO; }; #endif // FONT_GENERATION_H |