Skip to content
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.

Fixup build on vala 0.46 #47

Open
wants to merge 1 commit into
base: xenial
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/notification.vala
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

public abstract class IndicatorSound.Notification: Object
{
public Notification () {
protected Notification () {
BusWatcher.watch_namespace (
GLib.BusType.SESSION,
"org.freedesktop.Notifications",
Expand Down
2 changes: 1 addition & 1 deletion src/volume-control.vala
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public abstract class VolumeControl : Object

protected IndicatorSound.Options _options = null;

public VolumeControl(IndicatorSound.Options options) {
protected VolumeControl(IndicatorSound.Options options) {
_options = options;
}

Expand Down
2 changes: 1 addition & 1 deletion src/volume-warning.vala
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public abstract class VolumeWarning : Object
}
}

public VolumeWarning (IndicatorSound.Options options) {
protected VolumeWarning (IndicatorSound.Options options) {

_options = options;

Expand Down