diff options
Diffstat (limited to 'src/volume-control.vala')
-rw-r--r-- | src/volume-control.vala | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/volume-control.vala b/src/volume-control.vala index f33ae18..62655be 100644 --- a/src/volume-control.vala +++ b/src/volume-control.vala @@ -45,7 +45,7 @@ public abstract class VolumeControl : Object public VolumeReasons reason; } - private IndicatorSound.Options _options = null; + protected IndicatorSound.Options _options = null; public VolumeControl(IndicatorSound.Options options) { _options = options; @@ -56,7 +56,6 @@ public abstract class VolumeControl : Object public virtual bool active_mic { get { return false; } set { } } public virtual bool high_volume { get { return false; } protected set { } } public virtual bool ignore_high_volume { get { return false; } protected set { } } - public virtual bool below_warning_volume { get { return false; } protected set { } } public virtual bool mute { get { return false; } } public virtual bool is_playing { get { return false; } } public virtual VolumeControl.ActiveOutput active_output { get { return VolumeControl.ActiveOutput.SPEAKERS; } } |