Removed redundant TODOs 49/87549/4
authorAndrey Klimenko <and.klimenko@samsung.com>
Thu, 8 Sep 2016 12:35:02 +0000 (15:35 +0300)
committerAndrey Klimenko <and.klimenko@samsung.com>
Fri, 9 Sep 2016 13:10:04 +0000 (06:10 -0700)
Change-Id: Icb9f73ef2972eae62a84cc4ebe4c3de74c960e72
Signed-off-by: Andrey Klimenko <and.klimenko@samsung.com>
src/Common/ContactManager/src/ContactManager.cpp
src/Common/MsgEngine/src/MsgEngine.cpp
src/Common/View/src/NaviFrameItem.cpp
src/Common/View/src/View.cpp
src/Conversation/ConvList/Controller/src/BubbleEntityFactory.cpp
src/Conversation/ConvList/Controller/src/ConvList.cpp
src/Viewer/Controller/src/SmilPage.cpp

index 4ead0154109cb5856407acbd45fed4c9bd5b7275..646df7eb4debb3488c2837fc613551f25497956d 100644 (file)
 
     ContactPersonNumberRef ContactManager::getContactPersonNumber(int phoneNumId)
     {
-        // TODO: impl cache policy if needed
         contacts_filter_h filter = nullptr;
         contacts_filter_create(_contacts_contact_number._uri, &filter);
         contacts_filter_add_int(filter, _contacts_person_number.number_id, CONTACTS_MATCH_EQUAL, phoneNumId);
 
     void ContactManager::invalidateCache()
     {
-        // TODO: invalidate cache by uri table
         MSG_LOG("");
         m_AddressMap.clear();
         m_OwnerProfile.reset();
index 9ac27c4ab5b700b8059dbfa67bd333939cde1f9d..166053907bef4adb5b3f3043f7e367e2361ba478 100644 (file)
@@ -24,7 +24,6 @@
 #include "private/MsgSettingsPrivate.h"
 #include "private/MsgComposerPrivate.h"
 #else
- // TODO: msg public headers
 #endif
 
 #include <assert.h>
index 4612721b3f491920690b970bad02e957b58087a0..fd7639b3dbf7c6e58b9f9192a82ea728f33f9301 100644 (file)
@@ -288,7 +288,6 @@ void NaviFrameItem::NaviBar::setColor(NaviColorId id)
 
 void NaviFrameItem::NaviBar::setButtonText(NaviButtonId id, const std::string &text)
 {
-    //TODO: implement text color in edc
     TextStyle style;
 
     switch(m_CurrentColor)
index 7ec00b8081cdcadaeae9ade80dc7b5bf45ece66b..6cfcdd1ccb60342c699cead46b911d87550d2aae 100644 (file)
@@ -69,7 +69,6 @@ void View::setEo(Evas_Object *eo)
 {
     if(m_pEo)
     {
-        // TODO: impl. reset EO if nedded
         MSG_LOG_ERROR("m_pEo not null");
         assert(false);
     }
index 31d98f2e0ab44c0fa2bb9ac390a427100bf1a594..6364b137f23d6e3f10bca0830868d25a748b8faa 100644 (file)
@@ -83,7 +83,6 @@ BubbleEntity *BubbleEntityFactory::createEntity(const std::string &filePath, con
         switch(msgMediaType)
         {
             case MsgMedia::ImageType:
-                // TODO: msg service corrupts thumbnail's metadata, so it lost rotation. Use getPath instead getThumbPath until fix
                 return new BubbleImageEntity(filePath, direction);
             case MsgMedia::AudioType:
                 return new BubbleAudioEntity(filePath, fileName, bgType, direction);
index d18e8438857d55c47021be7ba7649e4b2eb1644e..ed6c537645cb900d06b5828fddf4fbd3fe743693 100644 (file)
@@ -395,7 +395,7 @@ void ConvList::onMsgStorageInsert(const MsgIdList &msgIdList)
         }
     }
     if(inserted)
-        navigateToBottom(); // TODO: navigate to last inserted message or to compose item ?
+        navigateToBottom();
 }
 
 void ConvList::onMsgStorageDelete(const MsgIdList &msgIdList)
index 13f125e76ed561b8c3d7b6e425e1b5c2a6b5937b..09d5222fe87332d5ffedfae8ac04ea3ae6c1fdb1 100644 (file)
@@ -130,8 +130,6 @@ void SmilPage::build(const MsgPage &page)
         m_Attachments.push_back(list[i].getFilePath());
     }
 
-    // TODO: image/video, text order
-
     const MsgMedia *video = getMedia(page, MsgMedia::VideoType);
     if(video)
         buildVideo(*video);
@@ -283,7 +281,6 @@ void SmilPage::onSaveButtonClicked(SmilAttachmentItemView &item)
     MSG_LOG("");
     if(FileUtils::saveFileToStorage(item.getFilePath()))
         notification_status_message_post(msg("IDS_MSGF_POP_SAVED_IN_MY_FILES").cStr());
-    // TODO: else
 }
 
 void SmilPage::onItemClicked(SmilSaveAllItemView &item)
@@ -291,6 +288,4 @@ void SmilPage::onItemClicked(SmilSaveAllItemView &item)
     MSG_LOG("");
     if(!m_Attachments.empty() && FileUtils::saveFilesToStorage(m_Attachments))
         notification_status_message_post(msg("IDS_MSGF_POP_SAVED_IN_MY_FILES").cStr());
-    // TODO: else
-
 }