diff options
Diffstat (limited to 'languages/cpp/compiler/gccoptions/gccoptionsplugin.h')
-rw-r--r-- | languages/cpp/compiler/gccoptions/gccoptionsplugin.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/languages/cpp/compiler/gccoptions/gccoptionsplugin.h b/languages/cpp/compiler/gccoptions/gccoptionsplugin.h index a3b8cd70..e5144e01 100644 --- a/languages/cpp/compiler/gccoptions/gccoptionsplugin.h +++ b/languages/cpp/compiler/gccoptions/gccoptionsplugin.h @@ -30,12 +30,12 @@ class GccOptionsPlugin : public KDevCompilerOptions public: enum Type { GCC, GPP, G77, Unknown }; - GccOptionsPlugin( QObject *parent, const char *name, const QStringList &args ); + GccOptionsPlugin( TQObject *parent, const char *name, const TQStringList &args ); ~GccOptionsPlugin(); - static QString captionForType(Type type); + static TQString captionForType(Type type); - virtual QString exec(QWidget *parent, const QString &flags); + virtual TQString exec(TQWidget *parent, const TQString &flags); private: Type gcctype; @@ -45,11 +45,11 @@ private: class GccOptionsDialog : public KDialogBase { public: - GccOptionsDialog( GccOptionsPlugin::Type type, QWidget *parent=0, const char *name=0 ); + GccOptionsDialog( GccOptionsPlugin::Type type, TQWidget *parent=0, const char *name=0 ); ~GccOptionsDialog(); - void setFlags(const QString &flags); - QString flags() const; + void setFlags(const TQString &flags); + TQString flags() const; private: GeneralTab *general; @@ -57,7 +57,7 @@ private: G77Tab *g77; Warnings1Tab *warnings1; Warnings2Tab *warnings2; - QStringList unrecognizedFlags; + TQStringList unrecognizedFlags; }; #endif |