summaryrefslogtreecommitdiffstats
path: root/digikam/utilities/setup/setupcamera.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'digikam/utilities/setup/setupcamera.cpp')
-rw-r--r--digikam/utilities/setup/setupcamera.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/digikam/utilities/setup/setupcamera.cpp b/digikam/utilities/setup/setupcamera.cpp
index 214a1df..f6a3b7b 100644
--- a/digikam/utilities/setup/setupcamera.cpp
+++ b/digikam/utilities/setup/setupcamera.cpp
@@ -166,7 +166,7 @@ SetupCamera::SetupCamera( TQWidget* parent )
{
new TQListViewItem(d->listView, ctype->title(), ctype->model(),
ctype->port(), ctype->path(),
- ctype->lastAccess().toString(Qt::ISODate));
+ ctype->lastAccess().toString(TQt::ISODate));
}
}
}
@@ -261,7 +261,7 @@ void SetupCamera::slotAutoDetectCamera()
KMessageBox::information(this, i18n("Found camera '%1' (%2) and added it to the list.")
.arg(model).arg(port));
new TQListViewItem(d->listView, model, model, port, "/",
- TQDateTime::currentDateTime().toString(Qt::ISODate));
+ TQDateTime::currentDateTime().toString(TQt::ISODate));
}
}
@@ -269,7 +269,7 @@ void SetupCamera::slotAddedCamera(const TQString& title, const TQString& model,
const TQString& port, const TQString& path)
{
new TQListViewItem(d->listView, title, model, port, path,
- TQDateTime::currentDateTime().toString(Qt::ISODate));
+ TQDateTime::currentDateTime().toString(TQt::ISODate));
}
void SetupCamera::slotEditedCamera(const TQString& title, const TQString& model,
@@ -300,7 +300,7 @@ void SetupCamera::applySettings()
TQDateTime lastAccess = TQDateTime::currentDateTime();
if (!item->text(4).isEmpty())
- lastAccess = TQDateTime::fromString(item->text(4), Qt::ISODate);
+ lastAccess = TQDateTime::fromString(item->text(4), TQt::ISODate);
CameraType *ctype = new CameraType(item->text(0), item->text(1), item->text(2),
item->text(3), lastAccess);