diff options
author | Christopher Michael <cp.michael@samsung.com> | 2020-01-09 10:54:17 -0500 |
---|---|---|
committer | Christopher Michael <cp.michael@samsung.com> | 2020-01-09 10:54:17 -0500 |
commit | 64dacb3d07f6ed74a53e4e38c25e27ebd9bfb6f7 (patch) | |
tree | a4fdd5310263f583e6decefc23eddebb1a6658d4 | |
parent | 18e01e88d5a85526fe059498dc20abb575ccee27 (diff) |
ecore-wl2: Move ecore_wl2_window_output_find function to be internal
This function is unused outside of EFL, so it does not need to be
public. Move function to be internal
ref T8013
-rw-r--r-- | src/lib/ecore_wl2/Ecore_Wl2.h | 12 | ||||
-rw-r--r-- | src/lib/ecore_wl2/ecore_wl2_internal.h | 12 |
2 files changed, 12 insertions, 12 deletions
diff --git a/src/lib/ecore_wl2/Ecore_Wl2.h b/src/lib/ecore_wl2/Ecore_Wl2.h index 6be9c8c4a9..7b65b5c418 100644 --- a/src/lib/ecore_wl2/Ecore_Wl2.h +++ b/src/lib/ecore_wl2/Ecore_Wl2.h | |||
@@ -1135,18 +1135,6 @@ EAPI void ecore_wl2_window_type_set(Ecore_Wl2_Window *window, Ecore_Wl2_Window_T | |||
1135 | EAPI Ecore_Wl2_Window_Type ecore_wl2_window_type_get(Ecore_Wl2_Window *window); | 1135 | EAPI Ecore_Wl2_Window_Type ecore_wl2_window_type_get(Ecore_Wl2_Window *window); |
1136 | 1136 | ||
1137 | /** | 1137 | /** |
1138 | * Find the output that a given window is on | ||
1139 | * | ||
1140 | * @param window The window to find the output for | ||
1141 | * | ||
1142 | * @return An Ecore_Wl2_Output if found, or NULL otherwise | ||
1143 | * | ||
1144 | * @ingroup Ecore_Wl2_Window_Group | ||
1145 | * @since 1.20 | ||
1146 | */ | ||
1147 | EAPI Ecore_Wl2_Output *ecore_wl2_window_output_find(Ecore_Wl2_Window *window); | ||
1148 | |||
1149 | /** | ||
1150 | * Set if window rotation is supported by the window manager | 1138 | * Set if window rotation is supported by the window manager |
1151 | * | 1139 | * |
1152 | * @param window | 1140 | * @param window |
diff --git a/src/lib/ecore_wl2/ecore_wl2_internal.h b/src/lib/ecore_wl2/ecore_wl2_internal.h index 4edcec3cd4..b464fb231f 100644 --- a/src/lib/ecore_wl2/ecore_wl2_internal.h +++ b/src/lib/ecore_wl2/ecore_wl2_internal.h | |||
@@ -126,6 +126,18 @@ EAPI void ecore_wl2_window_iconified_set(Ecore_Wl2_Window *window, Eina_Bool ico | |||
126 | EAPI Eina_Bool ecore_wl2_window_pending_get(Ecore_Wl2_Window *window); | 126 | EAPI Eina_Bool ecore_wl2_window_pending_get(Ecore_Wl2_Window *window); |
127 | 127 | ||
128 | /** | 128 | /** |
129 | * Find the output that a given window is on | ||
130 | * | ||
131 | * @param window The window to find the output for | ||
132 | * | ||
133 | * @return An Ecore_Wl2_Output if found, or NULL otherwise | ||
134 | * | ||
135 | * @ingroup Ecore_Wl2_Window_Group | ||
136 | * @since 1.20 | ||
137 | */ | ||
138 | EAPI Ecore_Wl2_Output *ecore_wl2_window_output_find(Ecore_Wl2_Window *window); | ||
139 | |||
140 | /** | ||
129 | * @defgroup Ecore_Wl2_Dnd_Group Wayland Library Drag-n-Drop Functions | 141 | * @defgroup Ecore_Wl2_Dnd_Group Wayland Library Drag-n-Drop Functions |
130 | * @ingroup Ecore_Wl2_Group | 142 | * @ingroup Ecore_Wl2_Group |
131 | * | 143 | * |