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.cpp32
1 files changed, 16 insertions, 16 deletions
diff --git a/digikam/utilities/setup/setupcamera.cpp b/digikam/utilities/setup/setupcamera.cpp
index f6a3b7b..1b8d0bb 100644
--- a/digikam/utilities/setup/setupcamera.cpp
+++ b/digikam/utilities/setup/setupcamera.cpp
@@ -135,23 +135,23 @@ SetupCamera::SetupCamera( TQWidget* parent )
// -------------------------------------------------------------
- connect(gphotoLogoLabel, TQT_SIGNAL(leftClickedURL(const TQString&)),
- this, TQT_SLOT(processGphotoURL(const TQString&)));
+ connect(gphotoLogoLabel, TQ_SIGNAL(leftClickedURL(const TQString&)),
+ this, TQ_SLOT(processGphotoURL(const TQString&)));
- connect(d->listView, TQT_SIGNAL(selectionChanged()),
- this, TQT_SLOT(slotSelectionChanged()));
+ connect(d->listView, TQ_SIGNAL(selectionChanged()),
+ this, TQ_SLOT(slotSelectionChanged()));
- connect(d->addButton, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotAddCamera()));
+ connect(d->addButton, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotAddCamera()));
- connect(d->removeButton, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotRemoveCamera()));
+ connect(d->removeButton, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotRemoveCamera()));
- connect(d->editButton, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotEditCamera()));
+ connect(d->editButton, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotEditCamera()));
- connect(d->autoDetectButton, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotAutoDetectCamera()));
+ connect(d->autoDetectButton, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotAutoDetectCamera()));
// Add cameras --------------------------------------
@@ -200,9 +200,9 @@ void SetupCamera::slotAddCamera()
{
CameraSelection *select = new CameraSelection;
- connect(select, TQT_SIGNAL(signalOkClicked(const TQString&, const TQString&,
+ connect(select, TQ_SIGNAL(signalOkClicked(const TQString&, const TQString&,
const TQString&, const TQString&)),
- this, TQT_SLOT(slotAddedCamera(const TQString&, const TQString&,
+ this, TQ_SLOT(slotAddedCamera(const TQString&, const TQString&,
const TQString&, const TQString&)));
select->show();
@@ -224,9 +224,9 @@ void SetupCamera::slotEditCamera()
CameraSelection *select = new CameraSelection;
select->setCamera(item->text(0), item->text(1), item->text(2), item->text(3));
- connect(select, TQT_SIGNAL(signalOkClicked(const TQString&, const TQString&,
+ connect(select, TQ_SIGNAL(signalOkClicked(const TQString&, const TQString&,
const TQString&, const TQString&)),
- this, TQT_SLOT(slotEditedCamera(const TQString&, const TQString&,
+ this, TQ_SLOT(slotEditedCamera(const TQString&, const TQString&,
const TQString&, const TQString&)));
select->show();