diff options
author | charles kerr <charlesk@canonical.com> | 2015-12-28 16:01:21 -0600 |
---|---|---|
committer | charles kerr <charlesk@canonical.com> | 2015-12-28 16:01:21 -0600 |
commit | f2324340fd8606d7abc9fa6d061fb5fc4ccc5d57 (patch) | |
tree | a96cb8e81680b3644b2a045c0981d2bd1cdc75cd /src | |
parent | 7cc1f182dd3c662e1bc8fdf0eed72bbbde3283a0 (diff) | |
download | ayatana-indicator-sound-f2324340fd8606d7abc9fa6d061fb5fc4ccc5d57.tar.gz ayatana-indicator-sound-f2324340fd8606d7abc9fa6d061fb5fc4ccc5d57.tar.bz2 ayatana-indicator-sound-f2324340fd8606d7abc9fa6d061fb5fc4ccc5d57.zip |
get server caps once per notification server, not once per notification
Diffstat (limited to 'src')
-rw-r--r-- | src/notification.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/notification.vala b/src/notification.vala index 6a805ac..0c9e5b8 100644 --- a/src/notification.vala +++ b/src/notification.vala @@ -78,6 +78,6 @@ public abstract class IndicatorSound.Notification: Object } protected Notify.Notification _notification = null; - private List<string> _server_caps = null; + private static List<string> _server_caps = null; } |