ecore_evas: fix version of APIs to support for window auxiliary hint recently
authorJihoon Kim <jihoon48.kim@samsung.com>
Thu, 27 Feb 2014 23:43:31 +0000 (08:43 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Thu, 27 Feb 2014 23:43:31 +0000 (08:43 +0900)
EFL 1.9 was already out, it's 1.10 phase now.

src/lib/ecore_evas/Ecore_Evas.h
src/lib/ecore_x/Ecore_X_Atoms.h

index bdc187a..6c40608 100644 (file)
@@ -783,7 +783,7 @@ EAPI void        ecore_evas_wm_rotation_manual_rotation_done(Ecore_Evas *ee);
  * hint change event. A list of auxiliary hint within the Ecore_Evas has this format:
  * ID:HINT:VALUE,ID:HINT:VALUE,...
  *
- * @since 1.9.0
+ * @since 1.10.0
  */
 EAPI const Eina_List *ecore_evas_aux_hints_supported_get(const Ecore_Evas *ee);
 /**
@@ -795,7 +795,7 @@ EAPI const Eina_List *ecore_evas_aux_hints_supported_get(const Ecore_Evas *ee);
  * using the callback mechanism in Elementary such as "aux,hint,allowed".
  * @warning Support for this depends on the underlying windowing system.
  *
- * @since 1.9.0
+ * @since 1.10.0
  */
 EAPI Eina_List       *ecore_evas_aux_hints_allowed_get(const Ecore_Evas *ee);
 /**
@@ -807,7 +807,7 @@ EAPI Eina_List       *ecore_evas_aux_hints_allowed_get(const Ecore_Evas *ee);
  * @return The ID of created auxiliary hint, or -1 on failure.
  * @warning Support for this depends on the underlying windowing system.
  *
- * @since 1.9.0
+ * @since 1.10.0
  */
 EAPI int              ecore_evas_aux_hint_add(Ecore_Evas *ee, const char *hint, const char *val);
 /**
@@ -818,7 +818,7 @@ EAPI int              ecore_evas_aux_hint_add(Ecore_Evas *ee, const char *hint,
  * @return EINA_TRUE if no error occurred, EINA_FALSE otherwise.
  * @warning Support for this depends on the underlying windowing system.
  *
- * @since 1.9.0
+ * @since 1.10.0
  */
 EAPI Eina_Bool        ecore_evas_aux_hint_del(Ecore_Evas *ee, const int id);
 /**
@@ -830,7 +830,7 @@ EAPI Eina_Bool        ecore_evas_aux_hint_del(Ecore_Evas *ee, const int id);
  * @return EINA_TRUE if no error occurred, EINA_FALSE otherwise.
  * @warning Support for this depends on the underlying windowing system.
  *
- * @since 1.9.0
+ * @since 1.10.0
  */
 EAPI Eina_Bool        ecore_evas_aux_hint_val_set(Ecore_Evas *ee, const int id, const char *val);
 /**
index 865bb02..1c11e09 100644 (file)
@@ -324,8 +324,8 @@ EAPI extern Ecore_X_Atom ECORE_X_ATOM_E_WINDOW_ROTATION_CHANGE_REQUEST;
 EAPI extern Ecore_X_Atom ECORE_X_ATOM_E_WINDOW_ROTATION_CHANGE_DONE;
 
 /* E window auxiliary hint */
-EAPI extern Ecore_X_Atom ECORE_X_ATOM_E_WINDOW_AUX_HINT_SUPPORTED_LIST;
-EAPI extern Ecore_X_Atom ECORE_X_ATOM_E_WINDOW_AUX_HINT_SUPPORT;
-EAPI extern Ecore_X_Atom ECORE_X_ATOM_E_WINDOW_AUX_HINT;
-EAPI extern Ecore_X_Atom ECORE_X_ATOM_E_WINDOW_AUX_HINT_ALLOWED;
+EAPI extern Ecore_X_Atom ECORE_X_ATOM_E_WINDOW_AUX_HINT_SUPPORTED_LIST; /**< @since 1.10 */
+EAPI extern Ecore_X_Atom ECORE_X_ATOM_E_WINDOW_AUX_HINT_SUPPORT; /**< @since 1.10 */
+EAPI extern Ecore_X_Atom ECORE_X_ATOM_E_WINDOW_AUX_HINT; /**< @since 1.10 */
+EAPI extern Ecore_X_Atom ECORE_X_ATOM_E_WINDOW_AUX_HINT_ALLOWED; /**< @since 1.10 */
 #endif /* _ECORE_X_ATOMS_H */