diff options
author | Michele Calgaro <[email protected]> | 2024-01-06 12:58:35 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-06 12:58:35 +0900 |
commit | 936a0c73f552cce101c9aa5ec64800fad86542a2 (patch) | |
tree | d0a1d1bd72fbbbb35917113916e7b362206ae8c3 /deco/config/colorpicker.cpp | |
parent | 81589f93590dc8daa7a1209fc4b1df60b5132477 (diff) | |
download | tde-style-baghira-936a0c73f552cce101c9aa5ec64800fad86542a2.tar.gz tde-style-baghira-936a0c73f552cce101c9aa5ec64800fad86542a2.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'deco/config/colorpicker.cpp')
-rw-r--r-- | deco/config/colorpicker.cpp | 12 |
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(){ |