aboutsummaryrefslogtreecommitdiff
path: root/src/engine-eds.cpp
diff options
context:
space:
mode:
authorNicholas Guriev <nicholas@guriev.su>2021-04-24 23:10:17 +0300
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-05-05 15:47:16 +0200
commitfdd18c9d53ca50b435c5965f748b2c32a745e8a7 (patch)
treea9ab2a173628697cf17d5547a2601c716d6d86a7 /src/engine-eds.cpp
parent0562b1c0137cd4c6970fc10197c628d26c065577 (diff)
downloadayatana-indicator-datetime-fdd18c9d53ca50b435c5965f748b2c32a745e8a7.tar.gz
ayatana-indicator-datetime-fdd18c9d53ca50b435c5965f748b2c32a745e8a7.tar.bz2
ayatana-indicator-datetime-fdd18c9d53ca50b435c5965f748b2c32a745e8a7.zip
Various tests fixes
* Provide default EdsEngine constructor for autotests. * Temporary disable DST related tests. Something strange happens there. * Do not create locale datetime for more reliable result on non-UTC systems. * Specify audio_url for sample Alarms. Fixes AyatanaIndicators/ayatana-indicator-datetime#32
Diffstat (limited to 'src/engine-eds.cpp')
-rw-r--r--src/engine-eds.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/engine-eds.cpp b/src/engine-eds.cpp
index 277c090..709bb4d 100644
--- a/src/engine-eds.cpp
+++ b/src/engine-eds.cpp
@@ -1245,6 +1245,11 @@ private:
****
***/
+EdsEngine::EdsEngine():
+ p(new Impl(std::shared_ptr<Myself>(new Myself)))
+{
+}
+
EdsEngine::EdsEngine(const std::shared_ptr<Myself> &myself):
p(new Impl(myself))
{