From d6f1d76768fe99c0f67545a9b6da98411733ffca Mon Sep 17 00:00:00 2001 From: Lucas Rocha Date: Fri, 8 Jul 2005 13:39:27 +0000 Subject: marks static many functions and global variables. Contribution from MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 2005-07-08 Lucas Rocha * src/about.c, src/option.c, src/fileselection.c: marks static many functions and global variables. Contribution from BenoƮt Dejean. --- src/about.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/about.c') diff --git a/src/about.c b/src/about.c index 5209f76c..1b9d921b 100644 --- a/src/about.c +++ b/src/about.c @@ -45,7 +45,7 @@ static GtkWidget *cred_dialog; static void zenity_about_dialog_response (GtkWidget *widget, int response, gpointer data); /* Sync with the people in the THANKS file */ -static const gchar *author_credits[] = { +static const gchar *const author_credits[] = { "Authors", "=======", "Glynn Foster ", @@ -184,7 +184,7 @@ static const gchar *author_credits[] = { NULL }; -gchar *translator_credits; +static gchar *translator_credits; static gint zenity_move_clothes_event (GnomeCanvasItem *item, @@ -242,7 +242,7 @@ typedef struct gdouble x, y; } MonkClothes; -static MonkClothes monk_clothes[] = { +static const MonkClothes monk_clothes[] = { {"gnome-tshirt.png", 30.0, 20.0}, {"sunglasses.png", ZENITY_CANVAS_X - 100.0 , ZENITY_CANVAS_Y - 150.0 }, {"surfboard.png", 30.0, ZENITY_CANVAS_Y - 200.0}, -- cgit