diff options
author | Michele Calgaro <[email protected]> | 2023-11-24 10:55:44 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-25 01:09:02 +0900 |
commit | f240b9f9ab5e470063b404b8dcdc665bbfc7d8c9 (patch) | |
tree | 8b2ec91e25776229e1713549c9637d2bd73269a6 | |
parent | c5a61d6ebd7ea80f928a37f31e498d3d2985971e (diff) | |
download | tdegames-f240b9f9ab5e470063b404b8dcdc665bbfc7d8c9.tar.gz tdegames-f240b9f9ab5e470063b404b8dcdc665bbfc7d8c9.zip |
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 92b9acd170e1c8c4d7a3cb49bc20748a619b5c87)
-rw-r--r-- | kmines/frame.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kmines/frame.cpp b/kmines/frame.cpp index 3788dee5..0698057f 100644 --- a/kmines/frame.cpp +++ b/kmines/frame.cpp @@ -127,7 +127,7 @@ void FieldFrame::drawBox(TQPainter &painter, const TQPoint &p, if (hasFocus) { painter.translate(p.x(), p.y()); TQRect fbr = style().subRect(TQStyle::SR_PushButtonFocusRect, &_button); - style().tqdrawPrimitive(TQStyle::PE_FocusRect, &painter, fbr, + style().drawPrimitive(TQStyle::PE_FocusRect, &painter, fbr, colorGroup(), TQStyle::Style_Enabled); painter.resetXForm(); } |