diff options
author | Michele Calgaro <[email protected]> | 2023-12-03 00:37:06 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-04 13:57:04 +0900 |
commit | f1134caa52098e75650f8de3753d04cc85a097de (patch) | |
tree | 1c5990b01e02e83d7313d298750c104024acb3c8 | |
parent | a6d7af8f851ceed37210d0cb6c833fd67d8bf94d (diff) | |
download | krusader-f1134caa52098e75650f8de3753d04cc85a097de.tar.gz krusader-f1134caa52098e75650f8de3753d04cc85a097de.zip |
Replaced various '#define' with actual strings - part 5
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | krusader/Panel/krview.cpp | 2 |
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 ) ); } |