summaryrefslogtreecommitdiffstats
path: root/chalk/ui/kis_autobrush.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chalk/ui/kis_autobrush.cpp')
-rw-r--r--chalk/ui/kis_autobrush.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/chalk/ui/kis_autobrush.cpp b/chalk/ui/kis_autobrush.cpp
index c7127928..a652b468 100644
--- a/chalk/ui/kis_autobrush.cpp
+++ b/chalk/ui/kis_autobrush.cpp
@@ -36,18 +36,18 @@ KisAutobrush::KisAutobrush(TQWidget *parent, const char* name, const TQString& c
linkFadeToggled(m_linkSize);
linkSizeToggled(m_linkFade);
- connect(bnLinkSize, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(linkSizeToggled( bool )));
- connect(bnLinkFade, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(linkFadeToggled( bool )));
+ connect(bnLinkSize, TQ_SIGNAL(toggled(bool)), this, TQ_SLOT(linkSizeToggled( bool )));
+ connect(bnLinkFade, TQ_SIGNAL(toggled(bool)), this, TQ_SLOT(linkFadeToggled( bool )));
- connect((TQObject*)comboBoxShape, TQT_SIGNAL(activated(int)), this, TQT_SLOT(paramChanged()));
+ connect((TQObject*)comboBoxShape, TQ_SIGNAL(activated(int)), this, TQ_SLOT(paramChanged()));
spinBoxWidth->setMinValue(1);
- connect(spinBoxWidth,TQT_SIGNAL(valueChanged(int)),this,TQT_SLOT(spinBoxWidthChanged(int)));
+ connect(spinBoxWidth,TQ_SIGNAL(valueChanged(int)),this,TQ_SLOT(spinBoxWidthChanged(int)));
spinBoxHeight->setMinValue(1);
- connect(spinBoxHeight,TQT_SIGNAL(valueChanged(int)),this,TQT_SLOT(spinBoxHeightChanged(int)));
+ connect(spinBoxHeight,TQ_SIGNAL(valueChanged(int)),this,TQ_SLOT(spinBoxHeightChanged(int)));
spinBoxHorizontal->setMinValue(0);
- connect(spinBoxHorizontal,TQT_SIGNAL(valueChanged(int)),this,TQT_SLOT(spinBoxHorizontalChanged(int)));
+ connect(spinBoxHorizontal,TQ_SIGNAL(valueChanged(int)),this,TQ_SLOT(spinBoxHorizontalChanged(int)));
spinBoxVertical->setMinValue(0);
- connect(spinBoxVertical,TQT_SIGNAL(valueChanged(int)),this,TQT_SLOT(spinBoxVerticalChanged(int)));
+ connect(spinBoxVertical,TQ_SIGNAL(valueChanged(int)),this,TQ_SLOT(spinBoxVerticalChanged(int)));
m_brsh = new TQImage(1,1,32);
TQ_CHECK_PTR(m_brsh);
@@ -55,7 +55,7 @@ KisAutobrush::KisAutobrush(TQWidget *parent, const char* name, const TQString& c
paramChanged();
- connect(brushPreview, TQT_SIGNAL(clicked()), TQT_SLOT(paramChanged()));
+ connect(brushPreview, TQ_SIGNAL(clicked()), TQ_SLOT(paramChanged()));
}