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 @@
#include <eel-gconf-extensions.h>
#include "dbus/dbus.h"
GtkListStore *pluginlist;
GtkListStore *outputlist;
GtkListStore *inputlist;
GtkListStore *ringtonelist;
GtkWidget *output;
GtkWidget *input;
GtkWidget *ringtone;
GtkWidget *plugin;
GtkWidget *codecMoveUpButton;
GtkWidget *codecMoveDownButton;
GtkWidget *codecTreeView; // View used instead of store to get access to selection
GtkWidget *pulse;
GtkWidget *alsabox;
GtkWidget *alsa_conf;
GtkWidget *noisebox;
GtkWidget *noise_conf;
/* FIXME: these should be in a struct rather than at file scope */
static GtkListStore *pluginlist;
static GtkListStore *outputlist;
static GtkListStore *inputlist;
static GtkListStore *ringtonelist;
static GtkWidget *output;
static GtkWidget *input;
static GtkWidget *ringtone;
static GtkWidget *plugin;
static GtkWidget *codecMoveUpButton;
static GtkWidget *codecMoveDownButton;
static GtkWidget *codecTreeView; // View used instead of store to get access to selection
static GtkWidget *pulse;
static GtkWidget *alsabox;
static GtkWidget *alsa_conf;
// Codec properties ID
enum {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment