summaryrefslogtreecommitdiff
path: root/src/about.c
diff options
context:
space:
mode:
authorLucas Rocha <lucasr@cvs.gnome.org>2005-07-08 13:39:27 +0000
committerLucas Almeida Rocha <lucasr@src.gnome.org>2005-07-08 13:39:27 +0000
commitd6f1d76768fe99c0f67545a9b6da98411733ffca (patch)
treefd4dd01fe8d2a517d7a22fd2b0aad575cbd14366 /src/about.c
parentChangelog fixes, THANKS update. (diff)
downloadzenity-d6f1d76768fe99c0f67545a9b6da98411733ffca.tar.gz
zenity-d6f1d76768fe99c0f67545a9b6da98411733ffca.tar.bz2
zenity-d6f1d76768fe99c0f67545a9b6da98411733ffca.zip
marks static many functions and global variables. Contribution from
2005-07-08 Lucas Rocha <lucasr@cvs.gnome.org> * src/about.c, src/option.c, src/fileselection.c: marks static many functions and global variables. Contribution from BenoƮt Dejean.
Diffstat (limited to 'src/about.c')
-rw-r--r--src/about.c6
1 files changed, 3 insertions, 3 deletions
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 <glynn foster sun com>",
@@ -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},
bgstack15