diff options
Diffstat (limited to 'chalk/core/kis_adjustment_layer.cpp')
| -rw-r--r-- | chalk/core/kis_adjustment_layer.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chalk/core/kis_adjustment_layer.cpp b/chalk/core/kis_adjustment_layer.cpp index 69e8b9398..d8b699c68 100644 --- a/chalk/core/kis_adjustment_layer.cpp +++ b/chalk/core/kis_adjustment_layer.cpp @@ -38,8 +38,8 @@ KisAdjustmentLayer::KisAdjustmentLayer(KisImageSP img, const TQString &name, Kis m_cachedPaintDev = new KisPaintDevice( img->colorSpace(), name.latin1()); m_showSelection = true; Q_ASSERT(m_cachedPaintDev); - connect(img, TQT_SIGNAL(sigSelectionChanged(KisImageSP)), - this, TQT_SLOT(slotSelectionChanged(KisImageSP))); + connect(img, TQ_SIGNAL(sigSelectionChanged(KisImageSP)), + this, TQ_SLOT(slotSelectionChanged(KisImageSP))); } KisAdjustmentLayer::KisAdjustmentLayer(const KisAdjustmentLayer& rhs) @@ -50,8 +50,8 @@ KisAdjustmentLayer::KisAdjustmentLayer(const KisAdjustmentLayer& rhs) m_selection = new KisSelection( *rhs.m_selection.data() ); m_selection->setParentLayer(this); m_selection->setInterestedInDirtyness(true); - connect(rhs.image(), TQT_SIGNAL(sigSelectionChanged(KisImageSP)), - this, TQT_SLOT(slotSelectionChanged(KisImageSP))); + connect(rhs.image(), TQ_SIGNAL(sigSelectionChanged(KisImageSP)), + this, TQ_SLOT(slotSelectionChanged(KisImageSP))); } m_cachedPaintDev = new KisPaintDevice( *rhs.m_cachedPaintDev.data() ); m_showSelection = false; |
