summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@comhem.se>2005-07-16 14:45:41 +0000
committerMikael Magnusson <mikachu@comhem.se>2005-07-16 14:45:41 +0000
commite37b07bfa06af43480df0b23208f83ab66939712 (patch)
tree6f4203f459ba25fbf8aefa55a11bd54f7d637da7 /render
parenta08bb4abba37c2ee88c32423cd4d5ba916e74f49 (diff)
dont need pll
Diffstat (limited to 'render')
-rw-r--r--render/font.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/render/font.c b/render/font.c
index d751cba1..f4143c1f 100644
--- a/render/font.c
+++ b/render/font.c
@@ -257,7 +257,6 @@ void RrFontDraw(XftDraw *d, RrTextureText *t, RrRect *area)
gboolean shortened = FALSE;
#else
PangoLayout *pl;
- PangoLayoutLine *pll;
PangoRectangle rect;
pl = pango_layout_new (context);
@@ -347,7 +346,7 @@ void RrFontDraw(XftDraw *d, RrTextureText *t, RrRect *area)
(FcChar8*)text->str, l);
#else /* USE_PANGO */
/* see below... */
- pango_xft_render_layout_line(d, &c, pll = pango_layout_get_line(pl, 0),
+ pango_xft_render_layout_line(d, &c, pango_layout_get_line(pl, 0),
(x + t->font->offset) * PANGO_SCALE,
(y + t->font->offset) * PANGO_SCALE);
#endif /* USE_PANGO */
@@ -368,7 +367,7 @@ void RrFontDraw(XftDraw *d, RrTextureText *t, RrRect *area)
* We want the baseline to always be in the same place, thusly, we use
* layout_line()
* The actual line doesn't need to be freed */
- pango_xft_render_layout_line(d, &c, pll = pango_layout_get_line(pl, 0),
+ pango_xft_render_layout_line(d, &c, pango_layout_get_line(pl, 0),
x * PANGO_SCALE, y * PANGO_SCALE);
g_object_unref(pl);
#endif