cedric pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=4088deb84acb2d3b2966b8502e85aa47acc474b5
commit 4088deb84acb2d3b2966b8502e85aa47acc474b5 Author: Nak-Gyeong Kim <[email protected]> Date: Mon Oct 19 11:44:50 2015 -0700 elm_win: fix wrong comment. Summary: static const char SIG_FOCUS_OUT[] = "focus,out"; // deprecated. use "unfocused" instead. static const char SIG_FOCUS_IN[] = "focus,in"; // deprecated. use "focused" instead. @fix Test Plan: N/A Reviewers: seoz, cedric Reviewed By: cedric Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D3187 Signed-off-by: Cedric BAIL <[email protected]> --- src/lib/elm_win.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c index ff52d3b..05fbcec 100644 --- a/src/lib/elm_win.c +++ b/src/lib/elm_win.c @@ -228,8 +228,8 @@ struct _Elm_Win_Data }; static const char SIG_DELETE_REQUEST[] = "delete,request"; -static const char SIG_FOCUS_OUT[] = "focus,out"; // deprecated. use "focused" instead. -static const char SIG_FOCUS_IN[] = "focus,in"; // deprecated. use "unfocused" instead. +static const char SIG_FOCUS_OUT[] = "focus,out"; // deprecated. use "unfocused" instead. +static const char SIG_FOCUS_IN[] = "focus,in"; // deprecated. use "focused" instead. static const char SIG_MOVED[] = "moved"; static const char SIG_WITHDRAWN[] = "withdrawn"; static const char SIG_ICONIFIED[] = "iconified"; --
