summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-03 00:37:06 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-04 13:57:37 +0900
commite61c1db91c1774a0f3ff99fc0edf2fcd92fb9722 (patch)
tree8317beef9d3ac48490ad56e108207efac1a952ec
parentf854b2fe24a992c21ddc83d2e0c3b04ce48f6ac6 (diff)
downloadkrusader-e61c1db9.tar.gz
krusader-e61c1db9.zip
Replaced various '#define' with actual strings - part 5
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit f1134caa52098e75650f8de3753d04cc85a097de)
-rw-r--r--krusader/Panel/krview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/krusader/Panel/krview.cpp b/krusader/Panel/krview.cpp
index d86a761..8330f16 100644
--- a/krusader/Panel/krview.cpp
+++ b/krusader/Panel/krview.cpp
@@ -108,7 +108,7 @@ TQPixmap KrView::getIcon( vfile *vf /*, KRListItem::cmpColor color*/ ) {
// if it's a symlink - add an arrow overlay
if ( vf->vfile_isSymLink() ) {
TQPixmap link( link_xpm );
- bitBlt ( TQT_TQPAINTDEVICE(&icon), 0, icon.height() - 11, TQT_TQPAINTDEVICE(&link), 0, 21, 10, 11, TQt::CopyROP, false );
+ bitBlt ( &icon, 0, icon.height() - 11, &link, 0, 21, 10, 11, TQt::CopyROP, false );
icon.setMask( icon.createHeuristicMask( false ) );
}