summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-09-12 05:56:02 +0000
committerDana Jansens <danakj@orodu.net>2003-09-12 05:56:02 +0000
commit4685a11530e32b513398607d0f38a7c761b33ad3 (patch)
tree206856c739f35495d9e3300e244b9ea941945142 /render
parent6fc8e1784e9dffd9624f7a8d6516b9d925067866 (diff)
wasted variable
Diffstat (limited to 'render')
-rw-r--r--render/font.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/render/font.c b/render/font.c
index a099c093..6e52c9ab 100644
--- a/render/font.c
+++ b/render/font.c
@@ -152,7 +152,7 @@ void RrFontDraw(XftDraw *d, RrTextureText *t, RrRect *area)
gint x,y,w,h;
XftColor c;
GString *text;
- gint mw, em, mh;
+ gint mw, mh;
size_t l;
gboolean shortened = FALSE;
@@ -171,12 +171,11 @@ void RrFontDraw(XftDraw *d, RrTextureText *t, RrRect *area)
shortened = TRUE;
/* remove a character from the middle */
text = g_string_erase(text, l-- / 2, 1);
- em = ELIPSES_LENGTH(t->font);
/* if the elipses are too large, don't show them at all */
- if (em > area->width)
+ if (ELIPSES_LENGTH(t->font) > area->width)
shortened = FALSE;
font_measure_full(t->font, text->str, &mw, &mh);
- mw += em;
+ mw += ELIPSES_LENGTH(t->font);
}
if (shortened) {
text = g_string_insert(text, (l + 1) / 2, ELIPSES);