summaryrefslogtreecommitdiffstats
path: root/chalk/ui/kis_dlg_adj_layer_props.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chalk/ui/kis_dlg_adj_layer_props.cpp')
-rw-r--r--chalk/ui/kis_dlg_adj_layer_props.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/chalk/ui/kis_dlg_adj_layer_props.cpp b/chalk/ui/kis_dlg_adj_layer_props.cpp
index f7d75310..efcfe10e 100644
--- a/chalk/ui/kis_dlg_adj_layer_props.cpp
+++ b/chalk/ui/kis_dlg_adj_layer_props.cpp
@@ -91,7 +91,7 @@ KisDlgAdjLayerProps::KisDlgAdjLayerProps(KisAdjustmentLayerSP layer,
m_preview = new KisPreviewWidget(page, "dlgadjustment.preview");
m_preview->slotSetDevice( dev );
- connect( m_preview, TQT_SIGNAL(updated()), this, TQT_SLOT(refreshPreview()));
+ connect( m_preview, TQ_SIGNAL(updated()), this, TQ_SLOT(refreshPreview()));
layout->addWidget(m_preview, 1, 1);
TQVBoxLayout *v1 = new TQVBoxLayout( layout );
@@ -104,7 +104,7 @@ KisDlgAdjLayerProps::KisDlgAdjLayerProps(KisAdjustmentLayerSP layer,
m_layerName->setText(layerName);
m_layerName->setSizePolicy(TQSizePolicy::MinimumExpanding, TQSizePolicy::Fixed);
hl->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 & ) ) );
if ( m_currentFilter ) {
m_currentConfigWidget = m_currentFilter->createConfigurationWidget(page, dev);
@@ -118,7 +118,7 @@ KisDlgAdjLayerProps::KisDlgAdjLayerProps(KisAdjustmentLayerSP layer,
}
else {
v1->addWidget( m_currentConfigWidget );
- connect(m_currentConfigWidget, TQT_SIGNAL(sigPleaseUpdatePreview()), this, TQT_SLOT(slotConfigChanged()));
+ connect(m_currentConfigWidget, TQ_SIGNAL(sigPleaseUpdatePreview()), this, TQ_SLOT(slotConfigChanged()));
}
refreshPreview();