aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2014-06-26 15:55:17 -0500
committerCharles Kerr <charles.kerr@canonical.com>2014-06-26 15:55:17 -0500
commitda980e33f340734c91950d244b980c7d8b5eef95 (patch)
tree5184c4670228cc9d8ace1683ea631a93eef9012a /src/main.cpp
parentea8bedf5ec63ca42de776de9f4c21343a8163578 (diff)
downloadayatana-indicator-datetime-da980e33f340734c91950d244b980c7d8b5eef95.tar.gz
ayatana-indicator-datetime-da980e33f340734c91950d244b980c7d8b5eef95.tar.bz2
ayatana-indicator-datetime-da980e33f340734c91950d244b980c7d8b5eef95.zip
Add Exporter's implementation to an Impl file because I'm about to shovel more methods and fields in there.
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 1940eb6..04845ce 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -164,7 +164,7 @@ main(int /*argc*/, char** /*argv*/)
// export them & run until we lose the busname
auto loop = g_main_loop_new(nullptr, false);
Exporter exporter;
- exporter.name_lost.connect([loop](){
+ exporter.name_lost().connect([loop](){
g_message("%s exiting; failed/lost bus ownership", GETTEXT_PACKAGE);
g_main_loop_quit(loop);
});