diff options
author | Nak-Gyeong Kim <nakkyong.kim@samsung.com> | 2015-10-19 11:44:50 -0700 |
---|---|---|
committer | Cedric BAIL <cedric@osg.samsung.com> | 2015-10-19 11:55:30 -0700 |
commit | 4088deb84acb2d3b2966b8502e85aa47acc474b5 (patch) | |
tree | 7f2581e4094e1281c3383eac0a10f7bf84511397 | |
parent | 6d40d0dbbc643d8c1cf5754882f88b3192d50163 (diff) | |
download | elementary-4088deb84acb2d3b2966b8502e85aa47acc474b5.tar.gz |
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 <cedric@osg.samsung.com>
-rw-r--r-- | src/lib/elm_win.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c index ff52d3b6e..05fbcecdd 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"; |