diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-07-24 11:47:55 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-07-24 11:47:55 +0200 |
commit | 068e34afc9fac537e1489a070fcae37da28baca3 (patch) | |
tree | e6f6b9112b61692a89f7ca1176ff2d90fe11ea26 | |
parent | 5930dc44f104e9d6f14a20696283d552a4105f85 (diff) | |
download | ayatana-indicator-datetime-068e34afc9fac537e1489a070fcae37da28baca3.tar.gz ayatana-indicator-datetime-068e34afc9fac537e1489a070fcae37da28baca3.tar.bz2 ayatana-indicator-datetime-068e34afc9fac537e1489a070fcae37da28baca3.zip |
src/engine-eds.cpp: Typo fix in g_debug output.
-rw-r--r-- | src/engine-eds.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine-eds.cpp b/src/engine-eds.cpp index 1c1ff0f..f8a4ce8 100644 --- a/src/engine-eds.cpp +++ b/src/engine-eds.cpp @@ -121,7 +121,7 @@ public: auto extension = e_source_get_extension(source, E_SOURCE_EXTENSION_CALENDAR); // check source is selected if (!e_source_selectable_get_selected(E_SOURCE_SELECTABLE(extension))) { - g_debug("Soure is not selected, ignore it: %s", e_source_get_display_name(source)); + g_debug("Source is not selected, ignore it: %s", e_source_get_display_name(source)); continue; } const auto color = e_source_selectable_get_color(E_SOURCE_SELECTABLE(extension)); |