elm_win: fix wrong comment.
authorNak-Gyeong Kim <nakkyong.kim@samsung.com>
Mon, 19 Oct 2015 18:44:50 +0000 (11:44 -0700)
committerCedric BAIL <cedric@osg.samsung.com>
Mon, 19 Oct 2015 18:55:30 +0000 (11:55 -0700)
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>
legacy/elementary/src/lib/elm_win.c

index ff52d3b..05fbcec 100644 (file)
@@ -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";