diff options
author | Michael Terry <michael.terry@canonical.com> | 2014-04-01 17:13:13 -0400 |
---|---|---|
committer | Michael Terry <michael.terry@canonical.com> | 2014-04-01 17:13:13 -0400 |
commit | d9cf9a4ea0f449506bc4b39ce9e72b26d8783962 (patch) | |
tree | 45fc3e99ae4223d603f7a355278cd1cb25559f2c | |
parent | 47ca0f8c9af7c41e884ff696c0ee05addd9f0ae8 (diff) | |
download | ayatana-indicator-sound-d9cf9a4ea0f449506bc4b39ce9e72b26d8783962.tar.gz ayatana-indicator-sound-d9cf9a4ea0f449506bc4b39ce9e72b26d8783962.tar.bz2 ayatana-indicator-sound-d9cf9a4ea0f449506bc4b39ce9e72b26d8783962.zip |
Drop minor null-allowed fix; let's not mix changes
-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 71fdefa..889c2d6 100644 --- a/src/volume-control.vala +++ b/src/volume-control.vala @@ -372,7 +372,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) { |