mirror of https://github.com/GNOME/gimp.git
parent
f8bea681aa
commit
8bd9e29708
|
@ -1,3 +1,7 @@
|
||||||
|
Thu Sep 9 15:12:36 PDT 1999 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* plug-ins/imagemap/imap_polygon.c: fix gccism
|
||||||
|
|
||||||
Thu Sep 9 22:23:06 CET 1999 vidar@prosalg.no (Vidar Madsen)
|
Thu Sep 9 22:23:06 CET 1999 vidar@prosalg.no (Vidar Madsen)
|
||||||
|
|
||||||
* plug-ins/common/spheredesigner.c: Various fixes/enhancements
|
* plug-ins/common/spheredesigner.c: Various fixes/enhancements
|
||||||
|
|
|
@ -442,7 +442,10 @@ polygon_fill_info_tab(Object_t *obj, gpointer data)
|
||||||
for (p = polygon->points; p; p = p->next) {
|
for (p = polygon->points; p; p = p->next) {
|
||||||
GdkPoint *point = (GdkPoint*) p->data;
|
GdkPoint *point = (GdkPoint*) p->data;
|
||||||
char x[16], y[16];
|
char x[16], y[16];
|
||||||
char *text[] = {x, y};
|
char *text[2];
|
||||||
|
|
||||||
|
text[0] = x;
|
||||||
|
text[1] = y;
|
||||||
|
|
||||||
sprintf(x, "%d", point->x);
|
sprintf(x, "%d", point->x);
|
||||||
sprintf(y, "%d", point->y);
|
sprintf(y, "%d", point->y);
|
||||||
|
|
Loading…
Reference in New Issue