Fix the infinite loop in ui_viewmgr_get_view_index(). 38/91938/1
authorHermet Park <hermet@hermet.pe.kr>
Wed, 12 Oct 2016 08:30:00 +0000 (17:30 +0900)
committerHermet Park <hermet@hermet.pe.kr>
Wed, 12 Oct 2016 08:30:00 +0000 (17:30 +0900)
UiIfaceViewmgr have a corruption for the function by just a simple wrong.

fixed it now.

Change-Id: If2da1b0a03f9050b763e520ecfbc44c3ab9332f8

src/lib/interface/UiIfaceViewmgr.cpp

index aa98fa8..595724a 100644 (file)
@@ -503,7 +503,7 @@ UiIfaceView *UiIfaceViewmgr::getView(unsigned int idx)
 
 int UiIfaceViewmgr::getViewIndex(const UiIfaceView *view)
 {
-       return this->getViewIndex(view);
+       return this->_impl->getViewIndex(view);
 }
 
 UiIfaceView *UiIfaceViewmgr::getLastView()