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:
a9a8a4f
)
[elementary] Fix return value on function.
author
Gustavo Lima Chaves
<glima@profusion.mobi>
Tue, 22 Nov 2011 12:37:26 +0000
(12:37 +0000)
committer
Gustavo Lima Chaves
<glima@profusion.mobi>
Tue, 22 Nov 2011 12:37:26 +0000
(12:37 +0000)
SVN revision: 65515
src/lib/elm_win.c
patch
|
blob
|
history
diff --git
a/src/lib/elm_win.c
b/src/lib/elm_win.c
index
719d83d
..
95fa371
100644
(file)
--- a/
src/lib/elm_win.c
+++ b/
src/lib/elm_win.c
@@
-2181,7
+2181,7
@@
elm_win_focus_get(const Evas_Object *obj)
Elm_Win *win;
ELM_CHECK_WIDTYPE(obj, widtype);
win = elm_widget_data_get(obj);
- if (!win) return;
+ if (!win) return
EINA_FALSE
;
return ecore_evas_focus_get(win->ee);
}