Change-Id: Ic213788d60d14906d865e750333e5c9b57df8bf9
mState = STOPPED;
+ RemoveSystemInformation();
+
DALI_LOG_RELEASE_INFO("Adaptor::Stop\n");
}
}
void SetupSystemInformation();
/**
+ * Remove system information if needs
+ */
+ void RemoveSystemInformation();
+
+ /**
* Adds a callback to be run when entering an idle state.
*
* A callback of the following type should be used:
{
}
+void Adaptor::RemoveSystemInformation()
+{
+}
+
} // namespace Adaptor
} // namespace Internal
free(locale);
}
+void Adaptor::RemoveSystemInformation()
+{
+ if(system_settings_remove_changed_cb(SYSTEM_SETTINGS_KEY_LOCALE_LANGUAGE, OnSystemLanguageChanged) != SYSTEM_SETTINGS_ERROR_NONE)
+ {
+ DALI_LOG_ERROR("DALI system_settings_remove_changed_cb failed.\n");
+ return;
+ }
+}
+
} // namespace Adaptor
} // namespace Internal