TizenRefApp-6728 Remove obsolete TODO/FIXME in the source code. 47/87147/2
authorDmytro Dragan <dm.dragan@samsung.com>
Tue, 6 Sep 2016 12:57:59 +0000 (15:57 +0300)
committerAndrey Klimenko <and.klimenko@samsung.com>
Thu, 8 Sep 2016 07:00:18 +0000 (00:00 -0700)
Change-Id: Ic9776f9b7d88e5bcf2a652085e22b38b7405355b
Signed-off-by: Dmytro Dragan <dm.dragan@samsung.com>
src/Common/MsgEngine/src/private/MessageMmsPrivate.cpp
src/Conversation/Body/View/src/BodyView.cpp
src/Conversation/ConvList/View/src/ConvListViewItem.cpp
src/Conversation/Main/Controller/src/Conversation.cpp
src/Conversation/Recipients/Controller/src/ConvRecipientsPanel.cpp
src/Settings/Controller/inc/Settings.h
src/Settings/Controller/src/Settings.cpp

index 980cb67..7eb31b7 100644 (file)
@@ -79,10 +79,6 @@ void MessageMmsPrivate::setText(const std::string &text)
 
 std::string MessageMmsPrivate::getText() const
 {
-    // TODO: remove if not needed
-    // Return only text of first page
-    // return MsgUtilsPrivate::getStr(m_MsgStruct, MSG_MESSAGE_MMS_TEXT_STR, MAX_MSG_TEXT_LEN);
-
     const MsgPageList &pageList = getPageList();
     std::string result;
     int size = pageList.getLength();
index f14fbdd..59c9e2f 100644 (file)
@@ -165,11 +165,6 @@ Evas_Object *BodyView::createEntry(Evas_Object *parent, int maxCharCount)
         ((BodyView*)data)->onContentChanged();
     }, this);
 
-    evas_object_smart_callback_add(m_pEntry, "preedit,changed", [](void *data, Evas_Object *obj, void *event_info)
-    {
-       // TODO: check
-    }, this);
-
     evas_object_smart_callback_add(m_pEntry, "maxlength,reached", [](void *data, Evas_Object *obj, void *event_info)
     {
         ((BodyView*)data)->onMaxLengthReached();
index eba6005..e0dbe75 100644 (file)
@@ -24,7 +24,6 @@ using namespace Msg;
 
 namespace
 {
-    //TODO: Implement different styles
     ListItemStyleRef sentStyle = ListItemStyle::create("sentbubble");
     ListItemStyleRef receivedStyle = ListItemStyle::create("receivebubble");
     ListItemStyleRef draftStyle = ListItemStyle::create("draft");
index 98ed472..a34fd9e 100644 (file)
@@ -1027,7 +1027,6 @@ void Conversation::onNaviExpandButtonClicked()
 
 void Conversation::onButtonClicked(NaviFrameItem &item, NaviButtonId buttonId)
 {
-    //TODO: Handle other buttons
     switch(buttonId)
     {
         case NaviPrevButtonId:
index 9cd11ed..182b270 100644 (file)
@@ -296,7 +296,7 @@ void ConvRecipientsPanel::onContactsPicked(const std::list<int> &numberIdList)
     else if(duplicateRecip != 0)
         appendStatusHandler(MbeRecipients::DuplicatedStatus);
 
-    setEntryFocus(true); // TODO: does not work
+    setEntryFocus(true); //FIXME: appending of two contacts breaks focus handle.
 }
 
 void ConvRecipientsPanel::onPopupBtnClicked(Popup &popup, int buttonId)
index 5f77157..bab6884 100644 (file)
@@ -99,7 +99,6 @@ namespace Msg
             void updateSoundItem();
             void updateVibrationItem();
             void updateDelivReportSmsItem();
-            void updateMsgOnSimItem();
             void updateDelivReportMmsItem();
             void updateReadReportItem();
             void updateAutoRetItem();
index b3d8472..f4084e2 100644 (file)
@@ -128,7 +128,6 @@ void Settings::updateItems()
     updateSoundItem();
     updateVibrationItem();
     updateDelivReportSmsItem();
-    updateMsgOnSimItem();
     updateDelivReportMmsItem();
     updateReadReportItem();
     updateAutoRetItem();
@@ -256,11 +255,6 @@ void Settings::updateDelivReportSmsItem()
     m_pDelivReportSmsItem->setCheckButtonState(getMsgSettings().getSmsDelivReport());
 }
 
-void Settings::updateMsgOnSimItem()
-{
-    // TODO:
-}
-
 void Settings::updateDelivReportMmsItem()
 {
     m_pDelivReportMmsItem->setCheckButtonState(getMsgSettings().getMmsDelivReport());