diff options
Diffstat (limited to 'src/common/gui/dialog.h')
-rw-r--r-- | src/common/gui/dialog.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/gui/dialog.h b/src/common/gui/dialog.h index bc95d81..f506411 100644 --- a/src/common/gui/dialog.h +++ b/src/common/gui/dialog.h @@ -19,11 +19,11 @@ class Dialog : public KDialogBase Q_OBJECT TQ_OBJECT public: - Dialog(TQWidget *tqparent, const char *name, bool modal, + Dialog(TQWidget *parent, const char *name, bool modal, const TQString &caption, int buttonMask, ButtonCode defaultButton, bool separator, const TQSize &defaultSize = TQSize()); Dialog(DialogType type, const TQString &caption, - int buttonMask, ButtonCode defaultButton, TQWidget *tqparent, const char *name, + int buttonMask, ButtonCode defaultButton, TQWidget *parent, const char *name, bool modal, bool separator, const TQSize &defaultSize = TQSize()); virtual ~Dialog(); @@ -40,7 +40,7 @@ class TreeListDialog : public Dialog Q_OBJECT TQ_OBJECT public: - TreeListDialog(TQWidget *tqparent, const char *name, bool modal, + TreeListDialog(TQWidget *parent, const char *name, bool modal, const TQString &caption, int buttonMask, ButtonCode defaultButton, bool separator); TQWidget *addPage(const TQStringList &labels); void showPage(TQWidget *page); @@ -74,7 +74,7 @@ Q_OBJECT TQ_OBJECT public: TextEditorDialog(const TQString &text, const TQString &caption, - bool wrapAtWidgetWidth, TQWidget *tqparent); + bool wrapAtWidgetWidth, TQWidget *parent); }; #endif |