projects
/
platform
/
upstream
/
elementary.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0ea0976
)
resolve compile warning: return value in void function
04/63404/1
accepted/tizen/common/20160325.135006
accepted/tizen/ivi/20160324.011347
accepted/tizen/mobile/20160324.011157
accepted/tizen/tv/20160324.011230
accepted/tizen/wearable/20160324.011308
submit/tizen/20160323.135842
author
Minchul Lee
<slotus.lee@samsung.com>
Wed, 23 Mar 2016 13:45:59 +0000
(22:45 +0900)
committer
Minchul Lee
<slotus.lee@samsung.com>
Wed, 23 Mar 2016 13:47:28 +0000
(22:47 +0900)
Change-Id: I9554b15f3b42ac5150b7d78d41545789b9672e49
Signed-off-by: Minchul Lee <slotus.lee@samsung.com>
src/lib/elm_win.c
patch
|
blob
|
history
diff --git
a/src/lib/elm_win.c
b/src/lib/elm_win.c
index 4af636704c6baa11ae1b01bdca8b725cd37f8dca..fcf93c6e7eed9ad7d1446653d6cb18043b7574dd 100644
(file)
--- a/
src/lib/elm_win.c
+++ b/
src/lib/elm_win.c
@@
-6102,7
+6102,7
@@
elm_win_input_rect_add(Evas_Object *obj, Eina_Rectangle *input_rect)
EAPI void
elm_win_input_rect_subtract(Evas_Object *obj, Eina_Rectangle *input_rect)
{
- ELM_WIN_CHECK(obj)
EINA_FALSE
;
+ ELM_WIN_CHECK(obj);
ELM_WIN_DATA_GET_OR_RETURN(obj, sd);
TRAP(sd, input_rect_subtract, input_rect);
}