projects
/
platform
/
core
/
uifw
/
ui-viewmgr.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6be5d4b
)
Fix debug log argument type to fix build error.
25/196925/1
accepted/tizen/unified/20190111.055121
submit/tizen/20190109.051753
author
Woochanlee
<wc0917.lee@samsung.com>
Tue, 8 Jan 2019 04:17:40 +0000
(13:17 +0900)
committer
Woochanlee
<wc0917.lee@samsung.com>
Tue, 8 Jan 2019 04:17:40 +0000
(13:17 +0900)
Expect type was int but return value was unsigend int.
Change-Id: I7ea87cdbdcca454a2dceeb35ec0ec04303c50478
src/lib/interface/UiIfaceViewmgr.cpp
patch
|
blob
|
history
diff --git
a/src/lib/interface/UiIfaceViewmgr.cpp
b/src/lib/interface/UiIfaceViewmgr.cpp
index bd61438e3c4c52c361d665c2fcdf5b28885ebb27..b8613783523aee0d217f17a86eb7cb9fcaa4a4de 100644
(file)
--- a/
src/lib/interface/UiIfaceViewmgr.cpp
+++ b/
src/lib/interface/UiIfaceViewmgr.cpp
@@
-337,7
+337,7
@@
int UiIfaceViewmgrImpl::removeView(UiIfaceView *view) noexcept
UiIfaceView *UiIfaceViewmgrImpl::getView(unsigned int idx) noexcept
{
if (idx >= this->_viewList.size()) {
- LOGE("Invalid idx(%d)! =? (idx range: %d ~ %d)", idx, 0, this->_viewList.size() - 1);
+ LOGE("Invalid idx(%d)! =? (idx range: %d ~ %d)", idx, 0,
(int)
this->_viewList.size() - 1);
set_last_result(UI_VIEWMGR_ERROR_INVALID_PARAMETER);
return nullptr;
}