summaryrefslogtreecommitdiffstats
path: root/chalk/ui/kis_dlg_adjustment_layer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chalk/ui/kis_dlg_adjustment_layer.cpp')
-rw-r--r--chalk/ui/kis_dlg_adjustment_layer.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/chalk/ui/kis_dlg_adjustment_layer.cpp b/chalk/ui/kis_dlg_adjustment_layer.cpp
index 34374356e..74b08552f 100644
--- a/chalk/ui/kis_dlg_adjustment_layer.cpp
+++ b/chalk/ui/kis_dlg_adjustment_layer.cpp
@@ -84,16 +84,16 @@ KisDlgAdjustmentLayer::KisDlgAdjustmentLayer(KisImage * img,
m_layerName = new KLineEdit(page, "m_layerName");
grid->addWidget(m_layerName, 0, 1);
- connect( m_layerName, TQT_SIGNAL( textChanged ( const TQString & ) ), this, TQT_SLOT( slotNameChanged( const TQString & ) ) );
+ connect( m_layerName, TQ_SIGNAL( textChanged ( const TQString & ) ), this, TQ_SLOT( slotNameChanged( const TQString & ) ) );
m_filtersList = new KisFiltersListView(m_dev, page, true, "dlgadjustment.filtersList");
- connect(m_filtersList , TQT_SIGNAL(selectionChanged(TQIconViewItem*)), this, TQT_SLOT(selectionHasChanged(TQIconViewItem* )));
+ connect(m_filtersList , TQ_SIGNAL(selectionChanged(TQIconViewItem*)), this, TQ_SLOT(selectionHasChanged(TQIconViewItem* )));
grid->addMultiCellWidget(m_filtersList, 1, 2, 0, 0);
m_preview = new KisPreviewWidget(page, "dlgadjustment.preview");
m_preview->slotSetDevice( m_dev );
- connect( m_preview, TQT_SIGNAL(updated()), this, TQT_SLOT(refreshPreview()));
+ connect( m_preview, TQ_SIGNAL(updated()), this, TQ_SLOT(refreshPreview()));
grid->addWidget(m_preview, 1, 1);
m_configWidgetHolder = new TQGroupBox(i18n("Configuration"), page, "currentConfigWidget");
@@ -175,7 +175,7 @@ void KisDlgAdjustmentLayer::selectionHasChanged ( TQIconViewItem * item )
{
m_configWidgetHolder->layout()->add(m_currentConfigWidget);
m_currentConfigWidget->show();
- connect(m_currentConfigWidget, TQT_SIGNAL(sigPleaseUpdatePreview()), this, TQT_SLOT(slotConfigChanged()));
+ connect(m_currentConfigWidget, TQ_SIGNAL(sigPleaseUpdatePreview()), this, TQ_SLOT(slotConfigChanged()));
} else {
m_labelNoConfigWidget->show();
}