Skip to content
Snippets Groups Projects
Commit e9196cf3 authored by Tristan Matthews's avatar Tristan Matthews
Browse files

* #6098: global variables should have file-scope to avoid name conflicts

parent 8e0dc2a9
No related branches found
No related tags found
No related merge requests found
...@@ -35,23 +35,22 @@ ...@@ -35,23 +35,22 @@
#include <eel-gconf-extensions.h> #include <eel-gconf-extensions.h>
#include "dbus/dbus.h" #include "dbus/dbus.h"
GtkListStore *pluginlist; /* FIXME: these should be in a struct rather than at file scope */
GtkListStore *outputlist; static GtkListStore *pluginlist;
GtkListStore *inputlist; static GtkListStore *outputlist;
GtkListStore *ringtonelist; static GtkListStore *inputlist;
static GtkListStore *ringtonelist;
GtkWidget *output;
GtkWidget *input; static GtkWidget *output;
GtkWidget *ringtone; static GtkWidget *input;
GtkWidget *plugin; static GtkWidget *ringtone;
GtkWidget *codecMoveUpButton; static GtkWidget *plugin;
GtkWidget *codecMoveDownButton; static GtkWidget *codecMoveUpButton;
GtkWidget *codecTreeView; // View used instead of store to get access to selection static GtkWidget *codecMoveDownButton;
GtkWidget *pulse; static GtkWidget *codecTreeView; // View used instead of store to get access to selection
GtkWidget *alsabox; static GtkWidget *pulse;
GtkWidget *alsa_conf; static GtkWidget *alsabox;
GtkWidget *noisebox; static GtkWidget *alsa_conf;
GtkWidget *noise_conf;
// Codec properties ID // Codec properties ID
enum { enum {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment