diff options
-rw-r--r-- | src/sj-main.c | 5 |
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; |