summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/timeadjust/timeadjustdialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-06 22:47:41 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-07 18:47:51 +0900
commitee8fe2c90471205b32e5abbfe46f5f6d295429a9 (patch)
tree27bb8e644081f92b2707fbbb2a84802102f7614c /kipi-plugins/timeadjust/timeadjustdialog.cpp
parent405d2a9eaa23e094d1bdee3ca7ad85841c68fc67 (diff)
downloadkipi-plugins-ee8fe2c90471205b32e5abbfe46f5f6d295429a9.tar.gz
kipi-plugins-ee8fe2c90471205b32e5abbfe46f5f6d295429a9.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kipi-plugins/timeadjust/timeadjustdialog.cpp')
-rw-r--r--kipi-plugins/timeadjust/timeadjustdialog.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kipi-plugins/timeadjust/timeadjustdialog.cpp b/kipi-plugins/timeadjust/timeadjustdialog.cpp
index 433a3bf..03b6093 100644
--- a/kipi-plugins/timeadjust/timeadjustdialog.cpp
+++ b/kipi-plugins/timeadjust/timeadjustdialog.cpp
@@ -179,7 +179,7 @@ TimeAdjustDialog::TimeAdjustDialog(KIPI::Interface* interface, TQWidget* parent)
// -- Adjustment type ------------------------------------------------------------
TQVGroupBox *adjGB = new TQVGroupBox(i18n("Adjustment Type"), plainPage());
- d->adjustTypeGrp = new TQButtonGroup(1, Qt::Horizontal, adjGB);
+ d->adjustTypeGrp = new TQButtonGroup(1, TQt::Horizontal, adjGB);
d->add = new TQRadioButton(i18n("Add"), d->adjustTypeGrp);
d->subtract = new TQRadioButton(i18n("Subtract"), d->adjustTypeGrp);
d->exif = new TQRadioButton(i18n("Set file date to EXIF/IPTC creation date"), d->adjustTypeGrp);
@@ -398,9 +398,9 @@ void TimeAdjustDialog::setImages(const KURL::List& images)
void TimeAdjustDialog::slotUpdateExample()
{
- TQString oldDate = d->exampleDate.toString(Qt::LocalDate);
+ TQString oldDate = d->exampleDate.toString(TQt::LocalDate);
TQDateTime date = updateTime(KURL(), d->exampleDate);
- TQString newDate = date.toString(Qt::LocalDate);
+ TQString newDate = date.toString(TQt::LocalDate);
d->exampleAdj->setText(i18n("<b>%1</b><br>would, for example, "
"change into<br><b>%2</b>")
.arg(oldDate).arg(newDate));
@@ -465,9 +465,9 @@ void TimeAdjustDialog::slotOk()
if (d->syncIPTCDateCheck->isChecked())
{
ret &= exiv2Iface.setIptcTagString("Iptc.Application2.DateCreated",
- dateTime.date().toString(Qt::ISODate));
+ dateTime.date().toString(TQt::ISODate));
ret &= exiv2Iface.setIptcTagString("Iptc.Application2.TimeCreated",
- dateTime.time().toString(Qt::ISODate));
+ dateTime.time().toString(TQt::ISODate));
}
ret &= exiv2Iface.save(url.path());