summaryrefslogtreecommitdiffstats
path: root/deco/config/colorpicker.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-06 12:58:35 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-09 10:15:44 +0900
commit8f6829a20f2439f2bcfb7f39ce64eef133e93234 (patch)
tree1dc5e354119d6224d9f90d93647947db49b88bdb /deco/config/colorpicker.cpp
parent210aaadd2d93af34c05914ba67a83895458601f9 (diff)
downloadtde-style-baghira-8f6829a2.tar.gz
tde-style-baghira-8f6829a2.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 936a0c73f552cce101c9aa5ec64800fad86542a2)
Diffstat (limited to 'deco/config/colorpicker.cpp')
-rw-r--r--deco/config/colorpicker.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/deco/config/colorpicker.cpp b/deco/config/colorpicker.cpp
index c5301c1..7f1e677 100644
--- a/deco/config/colorpicker.cpp
+++ b/deco/config/colorpicker.cpp
@@ -48,12 +48,12 @@ ColorPicker::ColorPicker(TQWidget* parent, const char* name) : TQGroupBox( paren
// resize( TQSize(350, 100).expandedTo(minimumSizeHint()) );
//connections
- connect(redSlider, SIGNAL(valueChanged (int)), this, SLOT(setRed(int)));
- connect(greenSlider, SIGNAL(valueChanged (int)), this, SLOT(setGreen(int)));
- connect(blueSlider, SIGNAL(valueChanged (int)), this, SLOT(setBlue(int)));
- connect(redValue, SIGNAL(valueChanged (int)), this, SLOT(setRed(int)));
- connect(greenValue, SIGNAL(valueChanged (int)), this, SLOT(setGreen(int)));
- connect(blueValue, SIGNAL(valueChanged (int)), this, SLOT(setBlue(int)));
+ connect(redSlider, TQ_SIGNAL(valueChanged (int)), this, TQ_SLOT(setRed(int)));
+ connect(greenSlider, TQ_SIGNAL(valueChanged (int)), this, TQ_SLOT(setGreen(int)));
+ connect(blueSlider, TQ_SIGNAL(valueChanged (int)), this, TQ_SLOT(setBlue(int)));
+ connect(redValue, TQ_SIGNAL(valueChanged (int)), this, TQ_SLOT(setRed(int)));
+ connect(greenValue, TQ_SIGNAL(valueChanged (int)), this, TQ_SLOT(setGreen(int)));
+ connect(blueValue, TQ_SIGNAL(valueChanged (int)), this, TQ_SLOT(setBlue(int)));
}
ColorPicker::~ColorPicker(){