diff options
author | Michele Calgaro <[email protected]> | 2024-01-07 19:47:53 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-07 19:47:53 +0900 |
commit | 6da2ba677c47d91e60cc819e29620bc4c919bfaa (patch) | |
tree | 2e6ca6e0183071a6c33b9e08d776779ecc5ca09a /src/palettecfg.cpp | |
parent | 1895cd7a20dac108d924e5094418939fd4b5bafb (diff) | |
download | ksensors-6da2ba677c47d91e60cc819e29620bc4c919bfaa.tar.gz ksensors-6da2ba677c47d91e60cc819e29620bc4c919bfaa.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/palettecfg.cpp')
-rw-r--r-- | src/palettecfg.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/palettecfg.cpp b/src/palettecfg.cpp index 2c2fef3..d963d9a 100644 --- a/src/palettecfg.cpp +++ b/src/palettecfg.cpp @@ -27,9 +27,9 @@ PaletteCfg::PaletteCfg(TQWidget *parent, const char *name): PaletteCfgDesign(par { groupName= 0; slotComboSelected(0); - connect( comboSelect,SIGNAL(activated(int)),this,SLOT(slotComboSelected(int)) ); - connect( buttonColor,SIGNAL(changed(const TQColor &)),this,SLOT(slotColorChanged(const TQColor &)) ); - connect( buttonDefaultPalette, SIGNAL(clicked()),this,SLOT(slotPaletteDefault()) ); + connect( comboSelect,TQ_SIGNAL(activated(int)),this,TQ_SLOT(slotComboSelected(int)) ); + connect( buttonColor,TQ_SIGNAL(changed(const TQColor &)),this,TQ_SLOT(slotColorChanged(const TQColor &)) ); + connect( buttonDefaultPalette, TQ_SIGNAL(clicked()),this,TQ_SLOT(slotPaletteDefault()) ); } PaletteCfg::~PaletteCfg() |