summaryrefslogtreecommitdiffstats
path: root/superkaramba/src/systemtray.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-03 00:49:17 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-05 11:41:58 +0900
commit5b1fdb9a3fa898c7bc3921e75ae04eece2332fb3 (patch)
tree8f4b12ee79c899ad27380ae0e0b995252a0855ef /superkaramba/src/systemtray.cpp
parent5ecef94fcb0ab49312273a1541025165499afa38 (diff)
downloadtdeutils-5b1fdb9a3fa898c7bc3921e75ae04eece2332fb3.tar.gz
tdeutils-5b1fdb9a3fa898c7bc3921e75ae04eece2332fb3.zip
Replaced various '#define' with actual strings - part 5
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit aa69f1c2ffda0e4e0339c1686a9ff4b3d00f4ac7)
Diffstat (limited to 'superkaramba/src/systemtray.cpp')
-rw-r--r--superkaramba/src/systemtray.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/superkaramba/src/systemtray.cpp b/superkaramba/src/systemtray.cpp
index ab539cd..f8397de 100644
--- a/superkaramba/src/systemtray.cpp
+++ b/superkaramba/src/systemtray.cpp
@@ -62,7 +62,7 @@ void Systemtray::updateBackgroundPixmap ( const TQPixmap & pixmap) {
//Stupid stupid stupid work around for annoying bug
//QXEmbed ignores setBackgroundOrigin(AncestorOrigin)....
TQPixmap bug = TQPixmap(emb->size());
- bitBlt(TQT_TQPAINTDEVICE(&bug), 0, 0, TQT_TQPAINTDEVICE(const_cast<TQPixmap*>(&pixmap)), emb->parentWidget()->x()+emb->x(), emb->parentWidget()->y()+emb->y(), emb->width(), emb->height(),TQt::CopyROP, false);
+ bitBlt(&bug, 0, 0, const_cast<TQPixmap*>(&pixmap), emb->parentWidget()->x()+emb->x(), emb->parentWidget()->y()+emb->y(), emb->width(), emb->height(),TQt::CopyROP, false);
emb->setPaletteBackgroundPixmap (bug);
}