aboutsummaryrefslogtreecommitdiff
path: root/src/messages-service.c
diff options
context:
space:
mode:
authorLars Uebernickel <lars.uebernickel@canonical.com>2012-09-19 08:28:17 +0200
committerLars Uebernickel <lars.uebernickel@canonical.com>2012-09-19 08:28:17 +0200
commitc03005628b210cc7b775088d4693a87ca13f99e4 (patch)
tree5e970dfec38421cca2c4b906d8b4ee5b8851e5c2 /src/messages-service.c
parent4d8755ace7d159d09346828336e2ac7698c16f96 (diff)
downloadayatana-indicator-messages-c03005628b210cc7b775088d4693a87ca13f99e4.tar.gz
ayatana-indicator-messages-c03005628b210cc7b775088d4693a87ca13f99e4.tar.bz2
ayatana-indicator-messages-c03005628b210cc7b775088d4693a87ca13f99e4.zip
messages-service: define all global variables as static
Diffstat (limited to 'src/messages-service.c')
-rw-r--r--src/messages-service.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/messages-service.c b/src/messages-service.c
index f71614c..73f3d35 100644
--- a/src/messages-service.c
+++ b/src/messages-service.c
@@ -39,15 +39,15 @@ with this program. If not, see <http://www.gnu.org/licenses/>.
static GHashTable *applications;
-IndicatorMessagesService *messages_service;
+static IndicatorMessagesService *messages_service;
static GSimpleActionGroup *actions;
static GActionMuxer *action_muxer;
static GMenu *toplevel_menu;
static GMenu *menu;
static GMenuModel *chat_section;
static GSettings *settings;
-gboolean draws_attention;
-const gchar *global_status[6]; /* max 5: available, away, busy, invisible, offline */
+static gboolean draws_attention;
+static const gchar *global_status[6]; /* max 5: available, away, busy, invisible, offline */
static gchar *
indicator_messages_get_icon_name ()