summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/dialogs/overwritedialogue.h
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/dialogs/overwritedialogue.h')
-rw-r--r--umbrello/umbrello/dialogs/overwritedialogue.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/umbrello/umbrello/dialogs/overwritedialogue.h b/umbrello/umbrello/dialogs/overwritedialogue.h
index a01e3366..36691466 100644
--- a/umbrello/umbrello/dialogs/overwritedialogue.h
+++ b/umbrello/umbrello/dialogs/overwritedialogue.h
@@ -34,8 +34,8 @@ public:
/**
* constructor sets up the dialog, adding checkbox and label
*/
- OverwriteDialogue(const QString& fileName, const QString& outputDirectory,
- bool applyToAllRemaining, QWidget* parent=0, const char* name=0);
+ OverwriteDialogue(const TQString& fileName, const TQString& outputDirectory,
+ bool applyToAllRemaining, TQWidget* parent=0, const char* name=0);
/**
* destrictor doesn't do anything
@@ -49,24 +49,24 @@ public:
protected slots:
/**
- * Overrides standard operation to call QDialog::done(Yes).
+ * Overrides standard operation to call TQDialog::done(Yes).
* This is a kludge, see note in class description.
*/
virtual void slotOk();
/**
- * Overrides standard operation to call QDialog::done(No).
+ * Overrides standard operation to call TQDialog::done(No).
*/
virtual void slotApply();
/**
- * Overrides standard operation to call QDialog::done(Cancel).
+ * Overrides standard operation to call TQDialog::done(Cancel).
*/
virtual void slotCancel();
private:
- QCheckBox* m_applyToAllRemaining;
+ TQCheckBox* m_applyToAllRemaining;
};
#endif