diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-04 10:30:32 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-04 12:36:03 +0900 |
commit | c0332621bc998c9786f4841e86a62b7711fe4abf (patch) | |
tree | 38b3ab6688de7a9396a1c5993a8ec265f5f33b64 /chalk/plugins/paintops | |
parent | 6c81ff8d61ec679e735d3fbd875583b12f0ef0a5 (diff) | |
download | koffice-c0332621bc998c9786f4841e86a62b7711fe4abf.tar.gz koffice-c0332621bc998c9786f4841e86a62b7711fe4abf.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'chalk/plugins/paintops')
-rw-r--r-- | chalk/plugins/paintops/defaultpaintops/kis_brushop.cpp | 2 | ||||
-rw-r--r-- | chalk/plugins/paintops/defaultpaintops/kis_smudgeop.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chalk/plugins/paintops/defaultpaintops/kis_brushop.cpp b/chalk/plugins/paintops/defaultpaintops/kis_brushop.cpp index 285b4d6f..5b8680a6 100644 --- a/chalk/plugins/paintops/defaultpaintops/kis_brushop.cpp +++ b/chalk/plugins/paintops/defaultpaintops/kis_brushop.cpp @@ -70,7 +70,7 @@ KisBrushOpSettings::KisBrushOpSettings(TQWidget *parent) TQToolButton* moreButton = new TQToolButton(TQt::UpArrow, m_optionsWidget); moreButton->setSizePolicy(TQSizePolicy::Expanding, TQSizePolicy::Expanding); moreButton->setMinimumSize(TQSize(24,24)); // Bah, I had hoped the above line would make this unneeded - connect(moreButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotCustomCurves())); + connect(moreButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotCustomCurves())); m_customSize = false; m_customOpacity = false; diff --git a/chalk/plugins/paintops/defaultpaintops/kis_smudgeop.cpp b/chalk/plugins/paintops/defaultpaintops/kis_smudgeop.cpp index 3a2a2284..905ceb15 100644 --- a/chalk/plugins/paintops/defaultpaintops/kis_smudgeop.cpp +++ b/chalk/plugins/paintops/defaultpaintops/kis_smudgeop.cpp @@ -79,7 +79,7 @@ KisSmudgeOpSettings::KisSmudgeOpSettings(TQWidget *parent, bool isTablet) TQToolButton* moreButton = new TQToolButton(TQt::UpArrow, m_optionsWidget); moreButton->setSizePolicy(TQSizePolicy::Expanding, TQSizePolicy::Expanding); moreButton->setMinimumSize(TQSize(24,24)); // Bah, I had hoped the above line would make this unneeded - connect(moreButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotCustomCurves())); + connect(moreButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotCustomCurves())); } else { m_pressureVariation = 0; m_size = 0; |