summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/timeadjust/timeadjustdialog.cpp
diff options
context:
space:
mode:
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());