diff options
author | Michele Calgaro <[email protected]> | 2023-11-24 10:55:29 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-25 15:17:16 +0900 |
commit | 139b166e1af1efe1cbc0ee2cce6d5534ad042d0e (patch) | |
tree | 85788279f2894f7133ffaac44c5f69eabaec3c3e /kicker/libkicker/simplebutton.cpp | |
parent | c19f68bd91790b23163fe787464984018a42a2dc (diff) | |
download | tdebase-139b166e1af1efe1cbc0ee2cce6d5534ad042d0e.tar.gz tdebase-139b166e1af1efe1cbc0ee2cce6d5534ad042d0e.zip |
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 36f2e08fd382c7042fbd3c8e7708f3ba1b9c9bd7)
Diffstat (limited to 'kicker/libkicker/simplebutton.cpp')
-rw-r--r-- | kicker/libkicker/simplebutton.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kicker/libkicker/simplebutton.cpp b/kicker/libkicker/simplebutton.cpp index 8d438d7ce..c53d6ce5a 100644 --- a/kicker/libkicker/simplebutton.cpp +++ b/kicker/libkicker/simplebutton.cpp @@ -99,7 +99,7 @@ void SimpleButton::drawButton( TQPainter *p ) if (m_highlight || isDown() || isOn()) { int flags = TQStyle::Style_Default | TQStyle::Style_Enabled; if (isDown() || isOn()) flags |= TQStyle::Style_Down; - style().tqdrawPrimitive(TQStyle::PE_ButtonTool, p, r, colorGroup(), flags); + style().drawPrimitive(TQStyle::PE_ButtonTool, p, r, colorGroup(), flags); } } @@ -263,7 +263,7 @@ void SimpleArrowButton::drawButton( TQPainter *p ) int flags = TQStyle::Style_Default | TQStyle::Style_Enabled; if (isDown() || isOn()) flags |= TQStyle::Style_Down; - style().tqdrawPrimitive(pe, p, r, colorGroup(), flags); + style().drawPrimitive(pe, p, r, colorGroup(), flags); if (m_forceStandardCursor) { SimpleButton::drawButton(p); |