diff options
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(){ |