aboutsummaryrefslogtreecommitdiff
path: root/tests/manual-test-snap.cpp
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-12-08 10:37:30 +0000
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-12-08 10:37:30 +0000
commit4a6ec712275b179decd1844232dce44bc9f9dc19 (patch)
tree75d9a7780c99306d91394564284ab90a626e6f0f /tests/manual-test-snap.cpp
parent755e153eb1928f62169165259bd7a3a9f8cc38b3 (diff)
downloadayatana-indicator-datetime-4a6ec712275b179decd1844232dce44bc9f9dc19.tar.gz
ayatana-indicator-datetime-4a6ec712275b179decd1844232dce44bc9f9dc19.tar.bz2
ayatana-indicator-datetime-4a6ec712275b179decd1844232dce44bc9f9dc19.zip
Many more C++ namespace name changes (unity -> ayatana).
Diffstat (limited to 'tests/manual-test-snap.cpp')
-rw-r--r--tests/manual-test-snap.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/manual-test-snap.cpp b/tests/manual-test-snap.cpp
index d04cf14..95775c8 100644
--- a/tests/manual-test-snap.cpp
+++ b/tests/manual-test-snap.cpp
@@ -26,9 +26,9 @@
#include <glib.h>
-using namespace unity::indicator::datetime;
+using namespace ayatana::indicator::datetime;
-namespace uin = unity::indicator::notifications;
+namespace ain = ayatana::indicator::notifications;
/***
****
@@ -91,7 +91,7 @@ int main(int argc, const char* argv[])
auto settings = std::make_shared<LiveSettings>();
settings->alarm_volume.set(volume);
- auto notification_engine = std::make_shared<uin::Engine>("indicator-datetime-service");
+ auto notification_engine = std::make_shared<ain::Engine>("indicator-datetime-service");
Snap snap (notification_engine, settings);
snap(a, a.alarms.front(), on_snooze, on_ok);
g_main_loop_run(loop);