diff options
author | Thiep Ha <thiep.ha@samsung.com> | 2016-05-11 11:06:42 +0900 |
---|---|---|
committer | Thiep Ha <thiepha@gmail.com> | 2016-05-11 11:20:33 +0900 |
commit | 3e2e5b6111206f0abb1999e3944532b905e78a27 (patch) | |
tree | cf38a9c16982670f8ab5744aa0680957b04164a2 | |
parent | 5bb39ed43da5916ce18a743f7afd361e0d86b138 (diff) |
elm win: change to use legacy api for cocoa engine
Some APIs are move from eo to legacy as in ab3058d3,
but not all api calls are changed. This causes build break
in mac with cocoa backend.
This patch fixes it.
@fix
-rw-r--r-- | src/lib/elementary/elm_win.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elementary/elm_win.c b/src/lib/elementary/elm_win.c index a9d592b643..ef6f28cca0 100644 --- a/src/lib/elementary/elm_win.c +++ b/src/lib/elementary/elm_win.c | |||
@@ -5629,7 +5629,7 @@ _elm_win_window_id_get(Eo *obj EINA_UNUSED, Elm_Win_Data *sd) | |||
5629 | if (sd->parent) | 5629 | if (sd->parent) |
5630 | { | 5630 | { |
5631 | Ecore_Cocoa_Window *pwin; | 5631 | Ecore_Cocoa_Window *pwin; |
5632 | pwin = elm_obj_win_cocoa_window_get(sd->parent); | 5632 | pwin = elm_win_cocoa_window_get(sd->parent); |
5633 | return (Ecore_Window)pwin; | 5633 | return (Ecore_Window)pwin; |
5634 | } | 5634 | } |
5635 | #endif | 5635 | #endif |