summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/kameraklient/savefiledialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-10 10:11:37 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-11 18:47:55 +0900
commitb74930c0a10ba45c28e0f6ffc7b5cd95f17bceb0 (patch)
treee834bbf0227ba64bd3a80111b3f1e501a13f3c59 /kipi-plugins/kameraklient/savefiledialog.cpp
parente169e36ac68f10b7005429910714aa21c5235ac3 (diff)
downloadkipi-plugins-b74930c0a10ba45c28e0f6ffc7b5cd95f17bceb0.tar.gz
kipi-plugins-b74930c0a10ba45c28e0f6ffc7b5cd95f17bceb0.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 9d73fae3fa66ac8c2563ae42fd403fb0ba449eae)
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);