diff options
Diffstat (limited to 'src/FbTk/Font.cc')
-rw-r--r-- | src/FbTk/Font.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/FbTk/Font.cc b/src/FbTk/Font.cc index 7cacbd5..40da222 100644 --- a/src/FbTk/Font.cc +++ b/src/FbTk/Font.cc | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | //$Id: Font.cc,v 1.12 2004/08/25 10:03:09 akir Exp $ | 22 | //$Id: Font.cc,v 1.13 2004/08/28 18:10:19 rathnor Exp $ |
23 | 23 | ||
24 | 24 | ||
25 | #include "StringUtil.hh" | 25 | #include "StringUtil.hh" |
@@ -356,7 +356,7 @@ bool Font::load(const std::string &name) { | |||
356 | } | 356 | } |
357 | 357 | ||
358 | unsigned int Font::textWidth(const char * const text, unsigned int size) const { | 358 | unsigned int Font::textWidth(const char * const text, unsigned int size) const { |
359 | if (isAntialias() && m_iconv != (iconv_t)(-1)) { | 359 | if (m_iconv != (iconv_t)(-1)) { |
360 | char* rtext = recode(m_iconv, text, size); | 360 | char* rtext = recode(m_iconv, text, size); |
361 | if (rtext != 0) | 361 | if (rtext != 0) |
362 | size = strlen(rtext); | 362 | size = strlen(rtext); |
@@ -392,7 +392,7 @@ void Font::drawText(Drawable w, int screen, GC gc, | |||
392 | // so we don't end up in a loop with m_shadow | 392 | // so we don't end up in a loop with m_shadow |
393 | static bool first_run = true; | 393 | static bool first_run = true; |
394 | 394 | ||
395 | if (isAntialias() && m_iconv != (iconv_t)(-1) && first_run) { | 395 | if (m_iconv != (iconv_t)(-1) && first_run) { |
396 | rtext = recode(m_iconv, text, len); | 396 | rtext = recode(m_iconv, text, len); |
397 | if (rtext != 0) { | 397 | if (rtext != 0) { |
398 | len = strlen(rtext); | 398 | len = strlen(rtext); |