diff options
Diffstat (limited to 'languages/fortran/compiler/pgioptions/pgioptionsplugin.h')
-rw-r--r-- | languages/fortran/compiler/pgioptions/pgioptionsplugin.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/languages/fortran/compiler/pgioptions/pgioptionsplugin.h b/languages/fortran/compiler/pgioptions/pgioptionsplugin.h index aba83fbc..28392c0d 100644 --- a/languages/fortran/compiler/pgioptions/pgioptionsplugin.h +++ b/languages/fortran/compiler/pgioptions/pgioptionsplugin.h @@ -24,14 +24,15 @@ class HpfTab; class PgiOptionsPlugin : public KDevCompilerOptions { Q_OBJECT + TQ_OBJECT public: enum Type { PGHPF, PGF77 }; - PgiOptionsPlugin( Type type, TQObject *parent=0, const char *name=0 ); + PgiOptionsPlugin( Type type, TQObject *tqparent=0, const char *name=0 ); ~PgiOptionsPlugin(); - virtual TQString exec(TQWidget *parent, const TQString &flags); + virtual TQString exec(TQWidget *tqparent, const TQString &flags); private: Type pgitype; @@ -41,7 +42,7 @@ private: class PgiOptionsDialog : public KDialogBase { public: - PgiOptionsDialog(PgiOptionsPlugin::Type type, TQWidget *parent=0, const char *name=0 ); + PgiOptionsDialog(PgiOptionsPlugin::Type type, TQWidget *tqparent=0, const char *name=0 ); ~PgiOptionsDialog(); void setFlags(const TQString &flags); |