[gimp/metadata-browser] file-ico: Move image_ID into local blocks
- From: Roman Joost <romanofski src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/metadata-browser] file-ico: Move image_ID into local blocks
- Date: Fri, 2 Dec 2011 02:04:24 +0000 (UTC)
commit 05fe4df3ab0bae4ecc8e2500f2f156b12d28c04f
Author: Mukund Sivaraman <muks banu com>
Date: Mon Oct 3 19:01:15 2011 +0530
file-ico: Move image_ID into local blocks
plug-ins/file-ico/ico.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
---
diff --git a/plug-ins/file-ico/ico.c b/plug-ins/file-ico/ico.c
index 71a4c0d..9682519 100644
--- a/plug-ins/file-ico/ico.c
+++ b/plug-ins/file-ico/ico.c
@@ -151,7 +151,6 @@ run (const gchar *name,
GimpParam **return_vals)
{
static GimpParam values[4];
- gint32 image_ID;
GimpRunMode run_mode;
GimpPDBStatusType status = GIMP_PDB_SUCCESS;
GimpExportReturn export = GIMP_EXPORT_CANCEL;
@@ -184,8 +183,9 @@ run (const gchar *name,
if (status == GIMP_PDB_SUCCESS)
{
- image_ID = ico_load_image (param[1].data.d_string, &error);
+ gint32 image_ID;
+ image_ID = ico_load_image (param[1].data.d_string, &error);
if (image_ID != -1)
{
*nreturn_vals = 2;
@@ -234,6 +234,7 @@ run (const gchar *name,
else if (strcmp (name, SAVE_PROC) == 0)
{
gchar *file_name;
+ gint32 image_ID;
image_ID = param[1].data.d_int32;
file_name = param[3].data.d_string;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]