summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2011-10-09 15:48:29 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2011-10-09 18:23:12 +0200
commit3093728fca1d2f8ee503084dde69ce0aafad3144 (patch)
treeeb728ce2b9bc15a30c48601e7f525a66167f8097
parent0cc2a3dcce3eded1cd2745a100e196fff54b406d (diff)
Mark 2 global variables as staticgtkapplication
They are not used out of sj-main.c
-rw-r--r--src/sj-main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/sj-main.c b/src/sj-main.c
index 09cad1d..bfb070b 100644
--- a/src/sj-main.c
+++ b/src/sj-main.c
@@ -82,7 +82,7 @@ static GtkWidget *duplicate, *eject;
GtkListStore *track_store;
GtkCellRenderer *toggle_renderer, *title_renderer, *artist_renderer;
-GtkWidget *current_message_area;
+static GtkWidget *current_message_area;
char *path_pattern = NULL;
char *file_pattern = NULL;
@@ -99,7 +99,8 @@ static gint no_of_tracks_selected;
static AlbumDetails *current_album;
static char *current_submit_url = NULL;
-gboolean autostart = FALSE, autoplay = FALSE;
+gboolean autostart = FALSE;
+static gboolean autoplay = FALSE;
static guint debug_flags = 0;