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:
c773cba
)
elementary: x and y really need to be initialized in that case.
author
Cedric BAIL
<cedric.bail@free.fr>
Fri, 30 Nov 2012 10:08:23 +0000
(10:08 +0000)
committer
Cedric BAIL
<cedric.bail@free.fr>
Fri, 30 Nov 2012 10:08:23 +0000
(10:08 +0000)
SVN revision: 79877
src/lib/elm_interface_scrollable.c
patch
|
blob
|
history
diff --git
a/src/lib/elm_interface_scrollable.c
b/src/lib/elm_interface_scrollable.c
index
55cf0da
..
5c4dd15
100644
(file)
--- a/
src/lib/elm_interface_scrollable.c
+++ b/
src/lib/elm_interface_scrollable.c
@@
-3848,7
+3848,9
@@
_elm_scroll_page_show(Eo *obj, void *_pd, va_list *list)
int pagenumber_h = va_arg(*list, int);
int pagenumber_v = va_arg(*list, int);
- Evas_Coord x, y, w, h;
+ Evas_Coord w, h;
+ Evas_Coord x = 0;
+ Evas_Coord y = 0;
Elm_Scrollable_Smart_Interface_Data *sid = _pd;
@@
-3867,7
+3869,9
@@
_elm_scroll_page_bring_in(Eo *obj, void *_pd, va_list *list)
int pagenumber_h = va_arg(*list, int);
int pagenumber_v = va_arg(*list, int);
- Evas_Coord x, y, w, h;
+ Evas_Coord w, h;
+ Evas_Coord x = 0;
+ Evas_Coord y = 0;
Elm_Scrollable_Smart_Interface_Data *sid = _pd;