From f1134caa52098e75650f8de3753d04cc85a097de Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 3 Dec 2023 00:37:06 +0900 Subject: [PATCH] Replaced various '#define' with actual strings - part 5 Signed-off-by: Michele Calgaro --- krusader/Panel/krview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ) ); }