summaryrefslogtreecommitdiffstats
path: root/chalk/ui/kis_dlg_adj_layer_props.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chalk/ui/kis_dlg_adj_layer_props.cc')
-rw-r--r--chalk/ui/kis_dlg_adj_layer_props.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chalk/ui/kis_dlg_adj_layer_props.cc b/chalk/ui/kis_dlg_adj_layer_props.cc
index f5227eeef..159d966fa 100644
--- a/chalk/ui/kis_dlg_adj_layer_props.cc
+++ b/chalk/ui/kis_dlg_adj_layer_props.cc
@@ -85,16 +85,16 @@ KisDlgAdjLayerProps::KisDlgAdjLayerProps(KisAdjustmentLayerSP layer,
}
setCaption(caption);
TQWidget * page = new TQWidget(this, "page widget");
- TQHBoxLayout * tqlayout = new TQHBoxLayout(page, 0, 6);
+ TQHBoxLayout * layout = new TQHBoxLayout(page, 0, 6);
setMainWidget(page);
m_preview = new KisPreviewWidget(page, "dlgadjustment.preview");
m_preview->slotSetDevice( dev );
connect( m_preview, TQT_SIGNAL(updated()), this, TQT_SLOT(refreshPreview()));
- tqlayout->addWidget(m_preview, 1, 1);
+ layout->addWidget(m_preview, 1, 1);
- TQVBoxLayout *v1 = new TQVBoxLayout( tqlayout );
+ TQVBoxLayout *v1 = new TQVBoxLayout( layout );
TQHBoxLayout *hl = new TQHBoxLayout( v1 );
TQLabel * lblName = new TQLabel(i18n("Layer name:"), page, "lblName");