From 8079f5cf9d72827e8e56f1d81b3953838952114a Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Wed, 9 Sep 2015 12:50:35 -0400 Subject: [PATCH] ecore-wl2: Update doxygen for window move and resize functions Signed-off-by: Chris Michael --- src/lib/ecore_wl2/Ecore_Wl2.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/lib/ecore_wl2/Ecore_Wl2.h b/src/lib/ecore_wl2/Ecore_Wl2.h index 69309d9ec8..0ef71315a3 100644 --- a/src/lib/ecore_wl2/Ecore_Wl2.h +++ b/src/lib/ecore_wl2/Ecore_Wl2.h @@ -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