projects
/
platform
/
framework
/
native
/
uifw.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
08d9a8e
)
Fix GetControl() function exception error
author
jaewon7.cho
<jaewon7.cho@samsung.com>
Mon, 1 Apr 2013 12:50:31 +0000
(21:50 +0900)
committer
jaewon7.cho
<jaewon7.cho@samsung.com>
Mon, 1 Apr 2013 12:50:31 +0000
(21:50 +0900)
Change-Id: I15ffa312d8bcfd9e016ec0eaf40a799c0912dc34
Signed-off-by: jaewon7.cho <jaewon7.cho@samsung.com>
src/ui/FUi_ContainerImpl.cpp
patch
|
blob
|
history
diff --git
a/src/ui/FUi_ContainerImpl.cpp
b/src/ui/FUi_ContainerImpl.cpp
index
84a3113
..
ae15e7a
100755
(executable)
--- a/
src/ui/FUi_ContainerImpl.cpp
+++ b/
src/ui/FUi_ContainerImpl.cpp
@@
-321,7
+321,7
@@
_ContainerImpl::DeleteAllChildren(_ContainerImpl* pChild, bool detachSystemChild
{
ArrayList* pList = static_cast <ArrayList*>(pChild->GetChildrenPublic());
int count = pList->GetCount();
- for (int index = count; index >= 0; index--)
+ for (int index = count
- 1
; index >= 0; index--)
{
Control* pControl = static_cast <Control*>(pList->GetAt(index));
if (pControl)