aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-09-01 07:33:29 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-09-01 07:33:29 +0200
commitf7c5127a29e29b79e5e90b548bde383f6d703bbc (patch)
tree7642705dff20a66913e2ff972fd1de8ff94783eb /src/main.cpp
parent9d95a062904cf8f421680d844ea656316c3c9a74 (diff)
parent87e47ca0ae6b0ec8281937cd62381e01cb8a2384 (diff)
downloadayatana-indicator-datetime-f7c5127a29e29b79e5e90b548bde383f6d703bbc.tar.gz
ayatana-indicator-datetime-f7c5127a29e29b79e5e90b548bde383f6d703bbc.tar.bz2
ayatana-indicator-datetime-f7c5127a29e29b79e5e90b548bde383f6d703bbc.zip
Merge branch 'tari01-pr/fix-build-error'
Attributes GH PR #52: https://github.com/AyatanaIndicators/ayatana-indicator-datetime/pull/52
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 6cad190..255b62c 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -151,7 +151,7 @@ main(int /*argc*/, char** /*argv*/)
// set up the snap decisions
auto snooze_planner = std::make_shared<SnoozePlanner>(state->settings, state->clock);
auto notification_engine = std::make_shared<ain::Engine>("ayatana-indicator-datetime-service");
- auto sound_builder = std::make_shared<uin::DefaultSoundBuilder>();
+ auto sound_builder = std::make_shared<ain::DefaultSoundBuilder>();
std::unique_ptr<Snap> snap (new Snap(notification_engine, sound_builder, state->settings, system_bus));
auto alarm_queue = create_simple_alarm_queue(state->clock, snooze_planner, engine, timezone_);
auto on_response = [snooze_planner, actions](const Appointment& appointment, const Alarm& alarm, const Snap::Response& response) {