diff options
author | Campbell Barton <ideasman42@gmail.com> | 2014-07-19 13:36:13 +1000 |
---|---|---|
committer | TingPing <tingping@tingping.se> | 2014-11-02 14:41:20 -0500 |
commit | f83d78dd2801c7e4bee406379d3119f8852cf297 (patch) | |
tree | 72322bd80d992ead5359ed70faeeac1ae6a73a20 /src/fe-gtk/plugin-tray.c | |
parent | 9fb4eb5107a133a4c0492f11f02cdeb014042786 (diff) |
Warning cleanup
- ignoring const - declarations after statements - some C files didnt include own headers (risking them getting out of sync) Closes #1064
Diffstat (limited to 'src/fe-gtk/plugin-tray.c')
-rw-r--r-- | src/fe-gtk/plugin-tray.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fe-gtk/plugin-tray.c b/src/fe-gtk/plugin-tray.c index b3e34c0a..3cd6502d 100644 --- a/src/fe-gtk/plugin-tray.c +++ b/src/fe-gtk/plugin-tray.c @@ -186,9 +186,10 @@ fe_tray_set_balloon (const char *title, const char *text) if (!notify_is_initted()) { + GList* server_caps; notify_init(PACKAGE_NAME); - GList* server_caps = notify_get_server_caps (); + server_caps = notify_get_server_caps (); if (g_list_find_custom (server_caps, "body-markup", (GCompareFunc)strcmp)) { notify_text_strip_flags |= STRIP_ESCMARKUP; |