aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2024-05-21 07:39:12 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2024-05-21 07:39:12 +0200
commitc462d2b65f31879819c175e7b423a9cc6dee9264 (patch)
tree064eb1c33f570fc99f93e028fdfa461158d111a4 /src
parentf62a910194e5ef415b31e87dbb8f028a2367666f (diff)
parent695faa485b170272d3a9a474f7377abee63739cb (diff)
downloadayatana-indicator-sound-c462d2b65f31879819c175e7b423a9cc6dee9264.tar.gz
ayatana-indicator-sound-c462d2b65f31879819c175e7b423a9cc6dee9264.tar.bz2
ayatana-indicator-sound-c462d2b65f31879819c175e7b423a9cc6dee9264.zip
Merge branch 'tari01-pr/fix-gcc14-build'
Attributes GH PR #104: https://github.com/AyatanaIndicators/ayatana-indicator-sound/pull/104
Diffstat (limited to 'src')
-rw-r--r--src/main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.c b/src/main.c
index a6c83b5..188f31d 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,6 +1,6 @@
/*
* Copyright 2015 Canonical Ltd.
- * Copyright 2023 Robert Tari <robert@tari.in>
+ * Copyright 2023-2024 Robert Tari <robert@tari.in>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -65,12 +65,12 @@ on_bus_acquired(GDBusConnection *connection,
}
pgloop = pa_glib_mainloop_new(NULL);
- options = indicator_sound_options_gsettings_new();
+ options = INDICATOR_SOUND_OPTIONS (indicator_sound_options_gsettings_new ());
accounts_service_access = accounts_service_access_new();
volume = volume_control_pulse_new(options, pgloop, accounts_service_access);
- warning = volume_warning_pulse_new(options, pgloop);
+ warning = VOLUME_WARNING (volume_warning_pulse_new (options, pgloop));
- service = indicator_sound_service_new (playerlist, volume, accounts, options, warning, accounts_service_access);
+ service = indicator_sound_service_new (playerlist, VOLUME_CONTROL (volume), accounts, options, warning, accounts_service_access);
g_clear_object(&playerlist);
g_clear_object(&options);