diff options
Diffstat (limited to 'kdvi/fontprogress.h')
-rw-r--r-- | kdvi/fontprogress.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/kdvi/fontprogress.h b/kdvi/fontprogress.h index 73b135e4..20eae300 100644 --- a/kdvi/fontprogress.h +++ b/kdvi/fontprogress.h @@ -1,4 +1,3 @@ -// -*- C++ -*- // // fontprogress.h // @@ -11,7 +10,7 @@ #include <kdialogbase.h> #include <tqguardedptr.h> -class KProcIO; +class TDEProcIO; class KProgress; class TQLabel; @@ -30,7 +29,7 @@ class TQLabel; **/ class fontProgressDialog : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: @@ -45,8 +44,8 @@ public: /** Used to initialize the progress bar. If the argument proc is non-zero, the associated process will be killed when the "abort" button is pressed. The FontProgress uses a TQGuarderPtr - internally, so it is save to delete the KProcIO anytime. */ - void setTotalSteps(int, KProcIO *proc=0); + internally, so it is save to delete the TDEProcIO anytime. */ + void setTotalSteps(int, TDEProcIO *proc=0); TQLabel* TextLabel2; @@ -59,7 +58,7 @@ private: TQLabel* TextLabel1; KProgress* ProgressBar1; int progress; - TQGuardedPtr<KProcIO> procIO; + TQGuardedPtr<TDEProcIO> procIO; }; #endif // FONT_GENERATION_H |