diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-07 19:47:53 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-07 19:47:53 +0900 |
| commit | 6da2ba677c47d91e60cc819e29620bc4c919bfaa (patch) | |
| tree | 2e6ca6e0183071a6c33b9e08d776779ecc5ca09a /src/infopanels.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 <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/infopanels.cpp')
| -rw-r--r-- | src/infopanels.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/infopanels.cpp b/src/infopanels.cpp index a0f8975..34442a3 100644 --- a/src/infopanels.cpp +++ b/src/infopanels.cpp @@ -60,8 +60,8 @@ void InfoPanels::configChanged(const char *name) void InfoPanels::timerConnect(Panel *display) { if(timerPanelCount==0) timer->start( cfgReadUpdateInterval()*1000 ); - connect( timer , SIGNAL(timeout() ), display, SLOT(updateInfo()) ); - connect( display, SIGNAL(destroyed()), this , SLOT(infoPanelDestroyed()) ); + connect( timer , TQ_SIGNAL(timeout() ), display, TQ_SLOT(updateInfo()) ); + connect( display, TQ_SIGNAL(destroyed()), this , TQ_SLOT(infoPanelDestroyed()) ); timerPanelCount++; } |
