diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-08-29 13:53:48 +0200 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2021-08-30 02:22:48 +0200 |
commit | 4e5e49fd380b19ff65f0d2aed8838a668aa4a97f (patch) | |
tree | 86912af1c8e77ba6a770c0ba590f26fe7e8e62c4 /src | |
parent | 8e5346679167fc41a46bfb808eb637ee2814eb57 (diff) | |
download | ayatana-indicator-datetime-4e5e49fd380b19ff65f0d2aed8838a668aa4a97f.tar.gz ayatana-indicator-datetime-4e5e49fd380b19ff65f0d2aed8838a668aa4a97f.tar.bz2 ayatana-indicator-datetime-4e5e49fd380b19ff65f0d2aed8838a668aa4a97f.zip |
src/notifications.cpp: No indentation of #ifdef-#else-#endif compiler macro.
Diffstat (limited to 'src')
-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() |