diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-03 00:47:39 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-03 18:53:37 +0900 |
commit | dba614b5da2e38e284ba72c8a68556bac7e3fc1d (patch) | |
tree | 339b16afabbbdf679f1e7504d8b663f36d8c9a19 /kmag | |
parent | fefa0a04e3304082860194db6cbfbdec5e09d258 (diff) | |
download | tdeaccessibility-dba614b5da2e38e284ba72c8a68556bac7e3fc1d.tar.gz tdeaccessibility-dba614b5da2e38e284ba72c8a68556bac7e3fc1d.zip |
Replaced various '#define' with actual strings - part 5
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kmag')
-rw-r--r-- | kmag/kmagzoomview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kmag/kmagzoomview.cpp b/kmag/kmagzoomview.cpp index ae9d06d..bb44444 100644 --- a/kmag/kmagzoomview.cpp +++ b/kmag/kmagzoomview.cpp @@ -246,7 +246,7 @@ void KMagZoomView::drawContents ( TQPainter * p, int clipx, int clipy, int clipw // show the pixel under mouse cursor if(m_showMouse) { // paint the mouse cursor - paintMouseCursor(TQT_TQPAINTDEVICE(&clippedPixmap), calcMousePos (m_refreshSwitch)-TQPoint (areaToPaint.x(), areaToPaint.y())); + paintMouseCursor(&clippedPixmap, calcMousePos (m_refreshSwitch)-TQPoint (areaToPaint.x(), areaToPaint.y())); } TQPixmap zoomedPixmap; @@ -889,7 +889,7 @@ TQPixmap KMagZoomView::getPixmap() TQPixmap mousePixmap(m_grabbedPixmap); // paint the mouse cursor w/o updating to a newer position - paintMouseCursor(TQT_TQPAINTDEVICE(&mousePixmap), calcMousePos(false)); + paintMouseCursor(&mousePixmap, calcMousePos(false)); return(mousePixmap); } else { // no mouse cursor |