summaryrefslogtreecommitdiffstats
path: root/ksirc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-03 00:48:48 +0900
committerTDE Gitea <gitea@mirror.git.trinitydesktop.org>2023-12-05 03:06:55 +0000
commit6d077d06067369f2060c1b011687941e84ece7c4 (patch)
tree19cccd2c9d0456e7606f5574e943ca7c51aaec5f /ksirc
parent15fd0d5c8e0d1c0eaf21b8794d9a14b706d8325b (diff)
downloadtdenetwork-6d077d06067369f2060c1b011687941e84ece7c4.tar.gz
tdenetwork-6d077d06067369f2060c1b011687941e84ece7c4.zip
Replaced various '#define' with actual strings - part 5
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ksirc')
-rw-r--r--ksirc/KSTicker/ksticker.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ksirc/KSTicker/ksticker.cpp b/ksirc/KSTicker/ksticker.cpp
index 1183e414..a94d281e 100644
--- a/ksirc/KSTicker/ksticker.cpp
+++ b/ksirc/KSTicker/ksticker.cpp
@@ -379,9 +379,9 @@ void KSTicker::resizeEvent( TQResizeEvent *e)
TQT_TQOBJECT(this)->killTimers();
TQPixmap *new_pic = new TQPixmap(width() + onechar, height());
new_pic->fill(backgroundColor());
- bitBlt(TQT_TQPAINTDEVICE(new_pic),
+ bitBlt(new_pic,
new_pic->width() - pic->width(), 0,
- TQT_TQPAINTDEVICE(pic), 0, 0,
+ pic, 0, 0,
pic->width(), pic->height(),
CopyROP, TRUE);
delete pic;