diff options
author | Arthur Mello <arthur.mello@canonical.com> | 2016-06-24 11:49:11 -0300 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-08-29 14:37:39 +0200 |
commit | 8ad06a88b53bcd0ac5d457a25f1161640da1d6bb (patch) | |
tree | 5d5e352d92823b08c8f19ef28ecd587a363d5251 /src | |
parent | c5c092a25f41e3cfb8dc3b3578c5c40ecd6c0dd7 (diff) | |
download | ayatana-indicator-datetime-8ad06a88b53bcd0ac5d457a25f1161640da1d6bb.tar.gz ayatana-indicator-datetime-8ad06a88b53bcd0ac5d457a25f1161640da1d6bb.tar.bz2 ayatana-indicator-datetime-8ad06a88b53bcd0ac5d457a25f1161640da1d6bb.zip |
Fix typo
Diffstat (limited to 'src')
-rw-r--r-- | src/settings-live.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/settings-live.cpp b/src/settings-live.cpp index 17c0ef7..d1ea91b 100644 --- a/src/settings-live.cpp +++ b/src/settings-live.cpp @@ -38,7 +38,7 @@ LiveSettings::~LiveSettings() g_clear_object(&m_settings); } -LiveSettings::LiveSettings(): m_settings(g_settings_new(SETTINGS_INTERFACE)), m_gsettings_cal_notification(NULL) +LiveSettings::LiveSettings(): m_settings(g_settings_new(SETTINGS_INTERFACE)), m_settings_cal_notification(NULL) { g_signal_connect (m_settings, "changed", G_CALLBACK(on_changed_ccid), this); @@ -46,10 +46,10 @@ LiveSettings::LiveSettings(): m_settings(g_settings_new(SETTINGS_INTERFACE)), m_ { GSettingsSchemaSource *source = g_settings_schema_source_get_default(); if (g_settings_schema_source_lookup(source, SETTINGS_NOTIFY_SCHEMA_ID, true)) { - m_gsettings_cal_notification = g_settings_new_with_path(SETTINGS_NOTIFY_SCHEMA_ID, SETTINGS_NOTIFY_CALENDAR_PATH); + m_settings_cal_notification = g_settings_new_with_path(SETTINGS_NOTIFY_SCHEMA_ID, SETTINGS_NOTIFY_CALENDAR_PATH); } - if (m_gsettings_cal_notification) { + if (m_settings_cal_notification) { g_signal_connect (m_settings_cal_notification, "changed", G_CALLBACK(on_changed_cal_notification), this); } } |