diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2013-05-23 00:36:44 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2013-05-23 00:36:44 -0500 |
commit | 75aa2968f0f163de99d20d15ca7eb9accc5c0102 (patch) | |
tree | 885dbe1b6a68e57067b77e5dd0714a286b9c1b1b /kcalc | |
parent | 359294c33620c8328d61f67635046d7cc060530c (diff) | |
download | tdeutils-75aa2968f0f163de99d20d15ca7eb9accc5c0102.tar.gz tdeutils-75aa2968f0f163de99d20d15ca7eb9accc5c0102.zip |
Fix incorrect characters.
Diffstat (limited to 'kcalc')
-rw-r--r-- | kcalc/kcalc_button.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kcalc/kcalc_button.cpp b/kcalc/kcalc_button.cpp index dd62821..058ff0e 100644 --- a/kcalc/kcalc_button.cpp +++ b/kcalc/kcalc_button.cpp @@ -151,7 +151,7 @@ void KSquareButton::paintLabel(TQPainter *paint) paint->drawLine(w2 + 27, 1 + h2, w2 + 27, 4 + h2); // add a three for the cube root if (_mode_flags & ModeInverse) { - paint->drawText(w2-2, 9 + h2, TQString("�")); + paint->drawText(w2-2, 9 + h2, TQString("³")); } } |