diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-12-08 14:45:35 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-12-08 14:45:39 +0100 |
commit | 750b36c28c5af7289b50d33aa99f3d631ec5b036 (patch) | |
tree | 2f8ec99cc0f5507358741d14325ccb8bf2ffa02f /src/engine-eds.cpp | |
parent | 5658f730c2992a612d1d5a7f0ff939380cd05c3e (diff) | |
download | ayatana-indicator-datetime-750b36c28c5af7289b50d33aa99f3d631ec5b036.tar.gz ayatana-indicator-datetime-750b36c28c5af7289b50d33aa99f3d631ec5b036.tar.bz2 ayatana-indicator-datetime-750b36c28c5af7289b50d33aa99f3d631ec5b036.zip |
Fix executable/project name (indicator-datetime -> ayatana-indicator-datetime) at various locations.
Diffstat (limited to 'src/engine-eds.cpp')
-rw-r--r-- | src/engine-eds.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/engine-eds.cpp b/src/engine-eds.cpp index 30aad1a..f1db6aa 100644 --- a/src/engine-eds.cpp +++ b/src/engine-eds.cpp @@ -215,7 +215,7 @@ private: if (error != nullptr) { if (!g_error_matches(error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) - g_warning("indicator-datetime cannot show EDS appointments: %s", error->message); + g_warning("ayatana-indicator-datetime cannot show EDS appointments: %s", error->message); g_error_free(error); } @@ -294,7 +294,7 @@ private: if (error) { if (!g_error_matches(error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) - g_warning("indicator-datetime cannot connect to EDS source: %s", error->message); + g_warning("ayatana-indicator-datetime cannot connect to EDS source: %s", error->message); g_error_free(error); } @@ -344,7 +344,7 @@ private: else if(error != nullptr) { if (!g_error_matches(error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) - g_warning("indicator-datetime cannot get View to EDS client: %s", error->message); + g_warning("ayatana-indicator-datetime cannot get View to EDS client: %s", error->message); g_error_free(error); } @@ -1017,7 +1017,7 @@ private: if (!e_cal_client_modify_object_finish (E_CAL_CLIENT(gclient), res, &error)) { if (!g_error_matches(error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) - g_warning("indicator-datetime cannot mark one-time alarm as disabled: %s", error->message); + g_warning("ayatana-indicator-datetime cannot mark one-time alarm as disabled: %s", error->message); g_error_free(error); } |