diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-08-29 13:53:48 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-08-30 00:48:02 +0200 |
commit | e5f9e40b6d934b427eeb2cb6e83c40f3f3b5135a (patch) | |
tree | f8019b556ad65b30aa1189b578fa7c90b8d86e7d /src/notifications.cpp | |
parent | 5f6bc6bce79341db46bf687219e1f27ff57d0315 (diff) | |
download | ayatana-indicator-datetime-e5f9e40b6d934b427eeb2cb6e83c40f3f3b5135a.tar.gz ayatana-indicator-datetime-e5f9e40b6d934b427eeb2cb6e83c40f3f3b5135a.tar.bz2 ayatana-indicator-datetime-e5f9e40b6d934b427eeb2cb6e83c40f3f3b5135a.zip |
src/notifications.cpp: No indentation of #ifdef-#else-#endif compiler macro.
Diffstat (limited to 'src/notifications.cpp')
-rw-r--r-- | src/notifications.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/notifications.cpp b/src/notifications.cpp index 7098cfc..b36227b 100644 --- a/src/notifications.cpp +++ b/src/notifications.cpp @@ -462,7 +462,7 @@ private: static std::string calendar_app_id() { - #ifdef HAS_URLDISPATCHER +#ifdef HAS_URLDISPATCHER auto urls = g_strsplit("calendar://", ",", 0); auto appids = lomiri_url_dispatch_url_appid(const_cast<const gchar**>(urls)); g_strfreev(urls); @@ -473,9 +473,9 @@ private: g_strfreev(appids); } return result; - #else +#else return std::string(); - #endif +#endif } static std::string calendar_app_icon() |