diff options
-rw-r--r-- | plugins/face/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/face/face.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/plugins/face/ChangeLog b/plugins/face/ChangeLog index a720c47727..5ba3b6cdbd 100644 --- a/plugins/face/ChangeLog +++ b/plugins/face/ChangeLog @@ -1,3 +1,8 @@ +2007-07-18 Sankar P <psankar@novell.com> + + * face.c: (org_gnome_composer_face): + Remove unused variables. + 2007-07-17 Sankar P <psankar@novell.com> * org-gnome-face.eplug.xml: diff --git a/plugins/face/face.c b/plugins/face/face.c index 3d06ec6e87..d91020c234 100644 --- a/plugins/face/face.c +++ b/plugins/face/face.c @@ -88,7 +88,7 @@ void org_gnome_composer_face (EPlugin * ep, EMMenuTargetWidget * t) error = NULL; if (length < 720) { - GdkPixbuf *pixbuf, *new; + GdkPixbuf *pixbuf; GdkPixbufLoader *loader = gdk_pixbuf_loader_new(); gdk_pixbuf_loader_write (loader, (guchar *)file_contents, length, NULL); @@ -96,7 +96,7 @@ void org_gnome_composer_face (EPlugin * ep, EMMenuTargetWidget * t) pixbuf = gdk_pixbuf_loader_get_pixbuf (loader); if (pixbuf) { - int width, height, prompt_response; + int width, height; g_object_ref (pixbuf); |