ecore-wl2: Update doxygen for window move and resize functions

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-09-09 12:50:35 -04:00
parent 5c6376fa29
commit 8079f5cf9d
1 changed files with 6 additions and 0 deletions

View File

@ -286,6 +286,9 @@ EAPI void ecore_wl2_window_free(Ecore_Wl2_Window *window);
/**
* Move a given Ecore_Wl2_Window
*
* @brief The position requested (@p x, @p y) is not honored by Wayland because
* Wayland does not allow specific window placement to be set.
*
* @param window The Ecore_Wl2_Window which to move
* @param x Desired x position of window
* @param y Desired y position of window
@ -297,6 +300,9 @@ EAPI void ecore_wl2_window_move(Ecore_Wl2_Window *window, int x, int y);
/**
* Resize a given Ecore_Wl2_Window
*
* @brief The size requested (@p w, @p h) is not honored by Wayland because
* Wayland does not allow specific window sizes to be set.
*
* @param window The Ecore_Wl2_Window which to resize
* @param w Desired width of window
* @param h Desired height of window