* src/canvas-hacktext.c: (gl_canvas_hacktext_set_arg):
Fixed use of uninitialized variable. Caught by
d binderman <dcb314@hotmail.com>.
git-svn-id: https://glabels.svn.sourceforge.net/svnroot/glabels/trunk@559
f5e0f49d-192f-0410-a22d-
a8d8700d0965
+2005-10-28 Jim Evins <evins@snaught.com>
+
+ * src/canvas-hacktext.c: (gl_canvas_hacktext_set_arg):
+ Fixed use of uninitialized variable. Caught by
+ d binderman <dcb314@hotmail.com>.
+
2005-10-27 Jim Evins <evins@snaught.com>
* src/merge-evolution.c: (gl_merge_evolution_get_record):
{
GnomeCanvasItem *item;
glCanvasHacktext *bp;
- char *text;
GnomeGlyphList * gl;
GdkColor color;
GnomeFont * font;
bp->priv->glyphlist = NULL;
}
- if (text) bp->text = g_value_dup_string (value);
+ bp->text = g_value_dup_string (value);
gnome_canvas_item_request_update (item);
break;