summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/kameraklient/savefiledialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/kameraklient/savefiledialog.cpp')
-rw-r--r--kipi-plugins/kameraklient/savefiledialog.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kipi-plugins/kameraklient/savefiledialog.cpp b/kipi-plugins/kameraklient/savefiledialog.cpp
index 86ef664..c56d158 100644
--- a/kipi-plugins/kameraklient/savefiledialog.cpp
+++ b/kipi-plugins/kameraklient/savefiledialog.cpp
@@ -37,15 +37,15 @@ SavefileDialog::SavefileDialog(const TQString& file, TQWidget *parent, const cha
TQLabel *descLbl = new TQLabel(i18n("The file '%1' already exists!").arg(fileInfo.absFilePath()), this);
renameEdit = new TQLineEdit(this);
renameEdit->setText(fileInfo.fileName());
- connect(renameEdit, TQT_SIGNAL(textChanged(const TQString &)), this, TQT_SLOT(slot_renameEnabled()));
+ connect(renameEdit, TQ_SIGNAL(textChanged(const TQString &)), this, TQ_SLOT(slot_renameEnabled()));
KButtonBox *bbox = new KButtonBox(this);
- renameBtn = bbox->addButton(i18n("Rename"), this, TQT_SLOT(slot_rename()), true);
+ renameBtn = bbox->addButton(i18n("Rename"), this, TQ_SLOT(slot_rename()), true);
renameBtn->setEnabled(false);
- bbox->addButton(i18n("Skip"), this, TQT_SLOT(slot_skip()), false);
- bbox->addButton(i18n("Skip All"), this, TQT_SLOT(slot_skipAll()), true);
- bbox->addButton(i18n("Overwrite"), this, TQT_SLOT(slot_overwrite()), true);
- bbox->addButton(i18n("Overwrite All"), this, TQT_SLOT(slot_overwriteAll()), true);
- TQPushButton *cancelBtn = bbox->addButton(i18n("&Cancel"), this, TQT_SLOT(reject()), true);
+ bbox->addButton(i18n("Skip"), this, TQ_SLOT(slot_skip()), false);
+ bbox->addButton(i18n("Skip All"), this, TQ_SLOT(slot_skipAll()), true);
+ bbox->addButton(i18n("Overwrite"), this, TQ_SLOT(slot_overwrite()), true);
+ bbox->addButton(i18n("Overwrite All"), this, TQ_SLOT(slot_overwriteAll()), true);
+ TQPushButton *cancelBtn = bbox->addButton(i18n("&Cancel"), this, TQ_SLOT(reject()), true);
cancelBtn->setDefault(true);
bbox->layout();
TQGridLayout *layout = new TQGridLayout(this, 0, 0, 15);