diff options
author | Michele Calgaro <[email protected]> | 2023-11-24 10:55:37 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-25 01:08:40 +0900 |
commit | 79ebc59cc17d520d3233ff88f815e0244e8ed5b0 (patch) | |
tree | cfe5066a2ef7155535286a89b35f54c643c06cab /keduca | |
parent | b2b98c0bf3af9d6250fee31ab6de989c075473b0 (diff) | |
download | tdeedu-79ebc59cc17d520d3233ff88f815e0244e8ed5b0.tar.gz tdeedu-79ebc59cc17d520d3233ff88f815e0244e8ed5b0.zip |
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit c5bd1f2f9a482db33b1a2e51ccec1533d1300a7d)
Diffstat (limited to 'keduca')
-rw-r--r-- | keduca/keduca/kcheckeduca.cpp | 2 | ||||
-rw-r--r-- | keduca/keduca/tderadioeduca.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/keduca/keduca/kcheckeduca.cpp b/keduca/keduca/kcheckeduca.cpp index 051a8c3e..6274de73 100644 --- a/keduca/keduca/kcheckeduca.cpp +++ b/keduca/keduca/kcheckeduca.cpp @@ -80,6 +80,6 @@ void KCheckEduca::drawButtonLabel( TQPainter *p){ br.setBottom( br.bottom()+2); br = br.intersect( TQRect(0,0,rw, rh+yo ) ); - style().tqdrawPrimitive( TQStyle::PE_FocusRect, p, br, colorGroup()); + style().drawPrimitive( TQStyle::PE_FocusRect, p, br, colorGroup()); } } diff --git a/keduca/keduca/tderadioeduca.cpp b/keduca/keduca/tderadioeduca.cpp index 4dde0d17..080b46d0 100644 --- a/keduca/keduca/tderadioeduca.cpp +++ b/keduca/keduca/tderadioeduca.cpp @@ -78,6 +78,6 @@ void TDERadioEduca::drawButtonLabel( TQPainter *p) br.setTop( br.top()-2 ); br.setBottom( br.bottom()+2); br = br.intersect( TQRect(0,0,rw, rh+yo ) ); - style().tqdrawPrimitive( TQStyle::PE_FocusRect, p, br, colorGroup()); + style().drawPrimitive( TQStyle::PE_FocusRect, p, br, colorGroup()); } } |