summaryrefslogtreecommitdiffstats
path: root/chalk/plugins/tools/selectiontools/kis_tool_select_contiguous.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chalk/plugins/tools/selectiontools/kis_tool_select_contiguous.cpp')
-rw-r--r--chalk/plugins/tools/selectiontools/kis_tool_select_contiguous.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/chalk/plugins/tools/selectiontools/kis_tool_select_contiguous.cpp b/chalk/plugins/tools/selectiontools/kis_tool_select_contiguous.cpp
index bf24775d8..d186dad55 100644
--- a/chalk/plugins/tools/selectiontools/kis_tool_select_contiguous.cpp
+++ b/chalk/plugins/tools/selectiontools/kis_tool_select_contiguous.cpp
@@ -146,7 +146,7 @@ void KisToolSelectContiguous::setup(TDEActionCollection *collection)
"tool_contiguous_selection" ,
0,
this,
- TQT_SLOT(activate()),
+ TQ_SLOT(activate()),
collection,
name());
TQ_CHECK_PTR(m_action);
@@ -192,7 +192,7 @@ TQWidget* KisToolSelectContiguous::createOptionWidget(TQWidget* parent)
TQVBoxLayout * l = dynamic_cast<TQVBoxLayout*>(m_optWidget->layout());
l->setSpacing( 6 );
- connect (m_optWidget, TQT_SIGNAL(actionChanged(int)), this, TQT_SLOT(slotSetAction(int)));
+ connect (m_optWidget, TQ_SIGNAL(actionChanged(int)), this, TQ_SLOT(slotSetAction(int)));
TQHBoxLayout * hbox = new TQHBoxLayout(l);
TQ_CHECK_PTR(hbox);
@@ -206,13 +206,13 @@ TQWidget* KisToolSelectContiguous::createOptionWidget(TQWidget* parent)
input->setRange(0, 200, 10, true);
input->setValue(20);
hbox->addWidget(input);
- connect(input, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(slotSetFuzziness(int)));
+ connect(input, TQ_SIGNAL(valueChanged(int)), this, TQ_SLOT(slotSetFuzziness(int)));
TQCheckBox* samplemerged = new TQCheckBox(i18n("Sample merged"), m_optWidget);
l->addWidget( samplemerged );
samplemerged->setChecked(m_sampleMerged);
- connect(samplemerged, TQT_SIGNAL(stateChanged(int)),
- this, TQT_SLOT(slotSetSampleMerged(int)));
+ connect(samplemerged, TQ_SIGNAL(stateChanged(int)),
+ this, TQ_SLOT(slotSetSampleMerged(int)));
l->addItem(new TQSpacerItem(1, 1, TQSizePolicy::Fixed, TQSizePolicy::Expanding));