Delete ui_viewmgr_get_soft_need() API. 51/104751/1
authorWoochan Lee <wc0917.lee@samsung.com>
Wed, 14 Dec 2016 08:05:24 +0000 (17:05 +0900)
committerWoochan Lee <wc0917.lee@samsung.com>
Wed, 14 Dec 2016 08:06:31 +0000 (17:06 +0900)
It's not need. It can cause backward compatibility issue.

Change-Id: I73ba066ecd0978113fdf8114e5918fd542059322

src/include/efl/mobile/c/ui_viewmgr.h
src/lib/efl/mobile/c/ui_viewmgr.cpp

index 5eac1f7..819ecfb 100644 (file)
@@ -208,14 +208,6 @@ EAPI int ui_viewmgr_get_view_index(const ui_view *view);
 EAPI int ui_viewmgr_get_view_count(void);
 
 /**
- * @brief Returns whether soft back key is required or not.
- * @since_tizen 3.0
- *
- * @return @c true if soft key is required, @c false otherwise
- */
-EAPI bool ui_viewmgr_get_soft_key_need(void);
-
-/**
  * @}
  */
 
index 0493c2c..cdfe8e8 100644 (file)
@@ -89,8 +89,3 @@ EAPI int ui_viewmgr_get_view_count(void)
 {
        return UI_VIEWMGR->getViewCount();
 }
-
-EAPI bool ui_viewmgr_get_soft_key_need(void)
-{
-       return UI_VIEWMGR->needSoftKey();
-}