summaryrefslogtreecommitdiffstats
path: root/style/baghira.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 /style/baghira.cpp
parent210aaadd2d93af34c05914ba67a83895458601f9 (diff)
downloadtde-style-baghira-8f6829a20f2439f2bcfb7f39ce64eef133e93234.tar.gz
tde-style-baghira-8f6829a20f2439f2bcfb7f39ce64eef133e93234.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 'style/baghira.cpp')
-rw-r--r--style/baghira.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/style/baghira.cpp b/style/baghira.cpp
index 2bd7903..e53c761 100644
--- a/style/baghira.cpp
+++ b/style/baghira.cpp
@@ -213,7 +213,7 @@ LiquidStyle::LiquidStyle() : TDEStyle( AllowMenuTransparency | FilledFrameWorkar
TQTimer* timer = new TQTimer( this );
timer->start(50, false);
// if (optionHandler->AnimateProgress())
- connect(timer, SIGNAL(timeout()), this, SLOT(updateProgressPos()));
+ connect(timer, TQ_SIGNAL(timeout()), this, TQ_SLOT(updateProgressPos()));
activeScroller = NULL;
//--------------------------------------
@@ -229,7 +229,7 @@ LiquidStyle::LiquidStyle() : TDEStyle( AllowMenuTransparency | FilledFrameWorkar
optionHandler = new OptionHandler( this );
if (optionHandler->style() != Milk && optionHandler->AnimateSlider())
- connect(timer, SIGNAL(timeout()), this, SLOT(updateSliderPos()));
+ connect(timer, TQ_SIGNAL(timeout()), this, TQ_SLOT(updateSliderPos()));
if (optionHandler->style() == Brushed)
bmShower = new BMShower(this);