summaryrefslogtreecommitdiffstats
path: root/digikam/imageplugins/hotpixels/hotpixelstool.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'digikam/imageplugins/hotpixels/hotpixelstool.cpp')
-rw-r--r--digikam/imageplugins/hotpixels/hotpixelstool.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/digikam/imageplugins/hotpixels/hotpixelstool.cpp b/digikam/imageplugins/hotpixels/hotpixelstool.cpp
index 4cabb68..fbcc6c9 100644
--- a/digikam/imageplugins/hotpixels/hotpixelstool.cpp
+++ b/digikam/imageplugins/hotpixels/hotpixelstool.cpp
@@ -119,14 +119,14 @@ HotPixelsTool::HotPixelsTool(TQObject* parent)
// -------------------------------------------------------------
- connect(m_filterMethodCombo, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotEffect()));
+ connect(m_filterMethodCombo, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotEffect()));
- connect(m_blackFrameButton, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotAddBlackFrame()));
+ connect(m_blackFrameButton, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotAddBlackFrame()));
- connect(m_blackFrameListView, TQT_SIGNAL(blackFrameSelected(TQValueList<HotPixel>, const KURL&)),
- this, TQT_SLOT(slotBlackFrame(TQValueList<HotPixel>, const KURL&)));
+ connect(m_blackFrameListView, TQ_SIGNAL(blackFrameSelected(TQValueList<HotPixel>, const KURL&)),
+ this, TQ_SLOT(slotBlackFrame(TQValueList<HotPixel>, const KURL&)));
}
HotPixelsTool::~HotPixelsTool()
@@ -146,11 +146,11 @@ void HotPixelsTool::readSettings()
EditorToolIface::editorToolIface()->setToolStartProgress(i18n("Loading: "));
BlackFrameListViewItem *item = new BlackFrameListViewItem(m_blackFrameListView, m_blackFrameURL);
- connect(item, TQT_SIGNAL(signalLoadingProgress(float)),
- this, TQT_SLOT(slotLoadingProgress(float)));
+ connect(item, TQ_SIGNAL(signalLoadingProgress(float)),
+ this, TQ_SLOT(slotLoadingProgress(float)));
- connect(item, TQT_SIGNAL(signalLoadingComplete()),
- this, TQT_SLOT(slotLoadingComplete()));
+ connect(item, TQ_SIGNAL(signalLoadingComplete()),
+ this, TQ_SLOT(slotLoadingComplete()));
}
}
@@ -193,11 +193,11 @@ void HotPixelsTool::slotAddBlackFrame()
m_blackFrameListView->clear();
BlackFrameListViewItem *item = new BlackFrameListViewItem(m_blackFrameListView, m_blackFrameURL);
- connect(item, TQT_SIGNAL(signalLoadingProgress(float)),
- this, TQT_SLOT(slotLoadingProgress(float)));
+ connect(item, TQ_SIGNAL(signalLoadingProgress(float)),
+ this, TQ_SLOT(slotLoadingProgress(float)));
- connect(item, TQT_SIGNAL(signalLoadingComplete()),
- this, TQT_SLOT(slotLoadingComplete()));
+ connect(item, TQ_SIGNAL(signalLoadingComplete()),
+ this, TQ_SLOT(slotLoadingComplete()));
}
}