diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2025-04-01 14:15:39 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2025-04-01 14:15:39 +0200 |
commit | 8493897dd48254f2bb40d5fdfe80d6031f891ce1 (patch) | |
tree | 794164306628f15d1d7a1ae0612215c366affaa8 /src/planner-snooze.cpp | |
parent | f1f745daecd0912e17f30626309d412ad23cf47e (diff) | |
parent | be6251cb3234b292cbc3bb9b661d6a0777115f17 (diff) | |
download | ayatana-indicator-datetime-8493897dd48254f2bb40d5fdfe80d6031f891ce1.tar.gz ayatana-indicator-datetime-8493897dd48254f2bb40d5fdfe80d6031f891ce1.tar.bz2 ayatana-indicator-datetime-8493897dd48254f2bb40d5fdfe80d6031f891ce1.zip |
Merge branch 'tari01-pr/mkcal-backend'
Attributes GH PR #135: https://github.com/AyatanaIndicators/ayatana-indicator-datetime/pull/135
Diffstat (limited to 'src/planner-snooze.cpp')
-rw-r--r-- | src/planner-snooze.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/planner-snooze.cpp b/src/planner-snooze.cpp index b81c912..3cbd740 100644 --- a/src/planner-snooze.cpp +++ b/src/planner-snooze.cpp @@ -1,5 +1,6 @@ /* * Copyright 2014 Canonical Ltd. + * Copyright 2024 Robert Tari * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License version 3, as published @@ -15,12 +16,11 @@ * * Authors: * Charles Kerr <charles.kerr@canonical.com> + * Robert Tari <robert@tari.in> */ #include <datetime/planner-snooze.h> -#include <libedataserver/libedataserver.h> // e_uid_new() - namespace ayatana { namespace indicator { namespace datetime { @@ -67,7 +67,7 @@ public: appt.alarms[0].time += offset; // give it a new ID - gchar* uid = e_uid_new(); + gchar* uid = g_uuid_string_random (); appt.uid = uid; g_free(uid); |