Fix for N_SE-44154
authorAmith Kumar Mahale <amith.m@samsung.com>
Tue, 2 Jul 2013 06:59:18 +0000 (12:29 +0530)
committerAmith Kumar Mahale <amith.m@samsung.com>
Tue, 2 Jul 2013 06:59:18 +0000 (12:29 +0530)
Change-Id: I7c86b00872f775616880b3dafb56949ed679e8a0
Signed-off-by: Amith Kumar Mahale <amith.m@samsung.com>
src/ClEventEditorForm.cpp

index c025e69..851c386 100644 (file)
@@ -760,8 +760,12 @@ EventEditorForm::OnSceneActivatedN(const SceneId& previousSceneId, const SceneId
                        }
                        else
                        {
+                               int count = __pPm->GetCountReminder();
                                __pPm->RemoveReminderAt(index);
-                               __pTableView->RefreshItem(GROUP_ADDITIONAL_CONTENT, index, TABLE_VIEW_REFRESH_TYPE_ITEM_MODIFY);
+                               while (index < count)
+                               {
+                                       __pTableView->RefreshItem(GROUP_ADDITIONAL_CONTENT, index++, TABLE_VIEW_REFRESH_TYPE_ITEM_MODIFY);
+                               }
                        }
                }
        }