summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/kameraklient/setupcamera.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/kameraklient/setupcamera.cpp')
-rw-r--r--kipi-plugins/kameraklient/setupcamera.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/kipi-plugins/kameraklient/setupcamera.cpp b/kipi-plugins/kameraklient/setupcamera.cpp
index a115fd6..f54ad16 100644
--- a/kipi-plugins/kameraklient/setupcamera.cpp
+++ b/kipi-plugins/kameraklient/setupcamera.cpp
@@ -78,7 +78,7 @@ SetupCamera::SetupCamera(TQWidget* parent, const char* name)
helpButton_ = actionButton( Help );
KHelpMenu* helpMenu = new KHelpMenu(this, m_about, false);
helpMenu->menu()->removeItemAt(0);
- helpMenu->menu()->insertItem(i18n("Plugin Handbook"), this, TQT_SLOT(slotHelp()), 0, -1, 0);
+ helpMenu->menu()->insertItem(i18n("Plugin Handbook"), this, TQ_SLOT(slotHelp()), 0, -1, 0);
helpButton_->setPopup( helpMenu->menu() );
setWFlags(TQt::WDestructiveClose);
@@ -118,11 +118,11 @@ SetupCamera::SetupCamera(TQWidget* parent, const char* name)
removeButton_->setEnabled(false);
editButton_->setEnabled(false);
- connect(listView_, TQT_SIGNAL(selectionChanged()), this, TQT_SLOT(slotSelectionChanged()));
- connect(addButton_, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotAddCamera()));
- connect(removeButton_, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotRemoveCamera()));
- connect(editButton_, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotEditCamera()));
- connect(autoDetectButton_, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotAutoDetectCamera()));
+ connect(listView_, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(slotSelectionChanged()));
+ connect(addButton_, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotAddCamera()));
+ connect(removeButton_, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotRemoveCamera()));
+ connect(editButton_, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotEditCamera()));
+ connect(autoDetectButton_, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotAutoDetectCamera()));
CameraList* clist = CameraList::instance();
@@ -133,7 +133,7 @@ SetupCamera::SetupCamera(TQWidget* parent, const char* name)
}
}
- connect(this, TQT_SIGNAL(okClicked()), this, TQT_SLOT(slotOkClicked()));
+ connect(this, TQ_SIGNAL(okClicked()), this, TQ_SLOT(slotOkClicked()));
show();
int W=SetupCamera::width (), H=SetupCamera::height();
@@ -163,8 +163,8 @@ void SetupCamera::slotSelectionChanged() {
void SetupCamera::slotAddCamera() {
CameraSelection *select = new CameraSelection;
- connect(select, TQT_SIGNAL(signalOkClicked(const TQString&, const TQString&)),
- this, TQT_SLOT(slotAddedCamera(const TQString&, const TQString&)));
+ connect(select, TQ_SIGNAL(signalOkClicked(const TQString&, const TQString&)),
+ this, TQ_SLOT(slotAddedCamera(const TQString&, const TQString&)));
select->show();
}
@@ -183,8 +183,8 @@ void SetupCamera::slotEditCamera() {
}
CameraSelection *select = new CameraSelection;
select->setCamera(item->text(0), item->text(1));
- connect(select, TQT_SIGNAL(signalOkClicked(const TQString&, const TQString&)),
- this, TQT_SLOT(slotEditedCamera(const TQString&, const TQString&)));
+ connect(select, TQ_SIGNAL(signalOkClicked(const TQString&, const TQString&)),
+ this, TQ_SLOT(slotEditedCamera(const TQString&, const TQString&)));
select->show();
}