discomfitor pushed a commit to annotated tag v0.20.2. http://git.enlightenment.org/core/enlightenment.git/commit/?id=31d948a0870a173a6a94ee0e56730cb94093bdb8
commit 31d948a0870a173a6a94ee0e56730cb94093bdb8 Author: Chris Michael <[email protected]> Date: Thu Dec 24 16:58:39 2015 -0500 Add missing function prototype for e_winlist_direction_select This function is being used inside e_mod_main, but the function prototype was never exposed which lead to implicit declaration warnings when building winlist module Signed-off-by: Chris Michael <[email protected]> --- src/modules/winlist/e_winlist.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/winlist/e_winlist.h b/src/modules/winlist/e_winlist.h index 00260eb..a31ffad 100644 --- a/src/modules/winlist/e_winlist.h +++ b/src/modules/winlist/e_winlist.h @@ -27,5 +27,6 @@ void e_winlist_right(E_Zone *zone); void e_winlist_down(E_Zone *zone); void e_winlist_up(E_Zone *zone); void e_winlist_modifiers_set(int mod, E_Winlist_Activate_Type type); +void e_winlist_direction_select(E_Zone *zone, int dir); #endif --
