In order to run unmodified Tizen 2.0 applications on a newer elementary
library then we need to add back the elm_scale_get and set methods.
_elm_rescale();
}
+/*
+ * Add backwards compatability implementation for elm_scale_get and elm_scale_set
+ * to allow running unmodified Tizen applications on a new drop of elementary
+ */
+
+EAPI double
+elm_scale_get(void)
+{
+ return elm_config_scale_get();
+}
+
+EAPI void
+elm_scale_set(double scale)
+{
+ elm_config_scale_set(scale);
+}
+
EAPI Eina_Bool
elm_config_password_show_last_get(void)
{
*/
EAPI void elm_config_scale_set(double scale);
+/*
+ * Add backwards compatability implementation for elm_scale_get and elm_scale_set
+ * to allow running unmodified Tizen applications on a new drop of elementary
+ */
+EAPI double elm_scale_get(void);
+EAPI void elm_scale_set(double scale);
+
/**
* @defgroup Password_last_show Password show last
* @ingroup Elementary