diff options
author | Ted Gould <ted@gould.cx> | 2014-10-22 15:52:54 -0400 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2014-10-22 15:52:54 -0400 |
commit | 8a25cabee9738ced0da921fcac693495006070af (patch) | |
tree | c1fffe37d1619a815f2455400f431959b63a4985 /src | |
parent | dec2d5350f47e52539941b45d394516066a19678 (diff) | |
download | ayatana-indicator-sound-8a25cabee9738ced0da921fcac693495006070af.tar.gz ayatana-indicator-sound-8a25cabee9738ced0da921fcac693495006070af.tar.bz2 ayatana-indicator-sound-8a25cabee9738ced0da921fcac693495006070af.zip |
Allow for the invalidated properties to be NULL
Diffstat (limited to 'src')
-rw-r--r-- | src/volume-control.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/volume-control.vala b/src/volume-control.vala index ad186a7..e8d35a4 100644 --- a/src/volume-control.vala +++ b/src/volume-control.vala @@ -689,7 +689,7 @@ public class VolumeControl : Object } /* AccountsService operations */ - private void accountsservice_props_changed_cb (DBusProxy proxy, Variant changed_properties, string[] invalidated_properties) + private void accountsservice_props_changed_cb (DBusProxy proxy, Variant changed_properties, string[]? invalidated_properties) { Variant volume_variant = changed_properties.lookup_value ("Volume", new VariantType ("d")); if (volume_variant != null) { |