Fixed build warnings 00/93500/2
authorAndrey Klimenko <and.klimenko@samsung.com>
Mon, 24 Oct 2016 13:08:32 +0000 (16:08 +0300)
committerAndrey Klimenko <and.klimenko@samsung.com>
Mon, 24 Oct 2016 13:29:34 +0000 (06:29 -0700)
Change-Id: I4e39fdedab56601f941bae09dbc314003eeb6fdb
Signed-off-by: Andrey Klimenko <and.klimenko@samsung.com>
src/Common/Controller/inc/NaviFrameController.h
src/Conversation/Body/View/src/BodyView.cpp
src/Conversation/Main/View/inc/MessageInputPanel.h
src/Conversation/Main/View/src/MessageInputPanel.cpp

index d263c99c5d7515473cc5938cc690d4507371bb87..23fac5374914635924e1ef224632c057a53765da 100644 (file)
@@ -83,6 +83,9 @@ namespace Msg
             // App:
             virtual void onAppPause();
             virtual void onAppResume();
+
+            using BaseController::onPause;
+            using BaseController::onResume;
     };
 }
 
index 421c107ff4ba31daa4a0d6c3004ca230e30a829b..7e6bb04e4430680464a726e7ac6277543cfe2dea 100644 (file)
@@ -28,11 +28,6 @@ using namespace Msg;
 namespace
 {
     #define maxBodyHeight ELM_SCALE_SIZE(360)
-
-    inline bool isBackKey(const char *name)
-    {
-        return name ? strcmp("BackSpace", name) == 0 : false;
-    }
 }
 
 BodyView::BodyView(Evas_Object *parent, int maxCharCount)
index fc2d8cd302a1814863bd892dfce5a670ba944cb6..30130e869a169235af5bc2a15ad1ffc48ef34d91 100644 (file)
@@ -63,7 +63,6 @@ namespace Msg
             IMessageInputPanelListener * m_pListener;
             Evas_Object *m_pLayout;
             Evas_Object *m_pSendButton;
-            Evas_Object *m_pSendLabel;
             Evas_Object *m_pAddButton;
     };
 
index 19997fa3a98cfdcf38cc4066a974604558151155..07be7f528e3944cc41169a5e9d1cabbe2dbcea15 100644 (file)
@@ -38,7 +38,6 @@ MessageInputPanel::MessageInputPanel(Evas_Object *parent)
     : m_pListener(nullptr)
     , m_pLayout(nullptr)
     , m_pSendButton(nullptr)
-    , m_pSendLabel(nullptr)
     , m_pAddButton(nullptr)
 {
     create(parent);