Modify key value and remove unused resources.
authorSungWan Kim <sw0726.kim@samsung.com>
Tue, 2 Apr 2013 01:51:39 +0000 (10:51 +0900)
committerSungWan Kim <sw0726.kim@samsung.com>
Tue, 2 Apr 2013 01:56:11 +0000 (10:56 +0900)
Change-Id: I8a76bf310c62f13307b9586a9c59a9f31d81ec6e
Signed-off-by: SungWan Kim <sw0726.kim@samsung.com>
inc/ClTypes.h
res/screen-density-xhigh/00_button_delete.png [deleted file]
res/screen-density-xhigh/00_button_delete_press.png [deleted file]
src/ClSharePopup.cpp
src/ClTypes.cpp

index cf353fd..0df1faf 100644 (file)
@@ -209,8 +209,6 @@ extern const wchar_t* IDB_MONTH_VIEW_BUBBLE_TODAY;
 extern const wchar_t* IDB_YEAR_DAY_FOCUS;
 extern const wchar_t* IDB_YEAR_MONTH_FOCUS;
 
-//extern const wchar_t* IDB_BUTTON_DELETE;
-//extern const wchar_t* IDB_BUTTON_DELETE_PRESS;
 extern const wchar_t* IDB_BUTTON_MINUS;
 extern const wchar_t* IDB_BUTTON_MINUS_PRESS;
 extern const wchar_t* IDB_BUTTON_PLUS;
@@ -241,14 +239,6 @@ extern const wchar_t* ID_OPERATION_SOCIAL_VIEW;
 
 extern const wchar_t* MIME_TYPE_VCALENDAR;
 
-extern const wchar_t* KEY_CALENDAR_EVENT_ID;
-extern const wchar_t* KEY_CALENDAR_TODO_ID;
-extern const wchar_t* KEY_CALENDAR_ITEM_ID;
-extern const wchar_t* KEY_CALENDAR_ITEM_TYPE;
-extern const wchar_t* KEY_CALENDAR_VIEW_TYPE;
-extern const wchar_t* KEY_CALENDAR_SELECTION_MODE;
-extern const wchar_t* KEY_CALENDAR_PATH;
-
 extern const wchar_t* KEY_DATA_PATH;
 extern const wchar_t* KEY_DATA_SELECTION_MODE;
 extern const wchar_t* KEY_DATA_RETURN_RESULT;
diff --git a/res/screen-density-xhigh/00_button_delete.png b/res/screen-density-xhigh/00_button_delete.png
deleted file mode 100644 (file)
index 2431fa8..0000000
Binary files a/res/screen-density-xhigh/00_button_delete.png and /dev/null differ
diff --git a/res/screen-density-xhigh/00_button_delete_press.png b/res/screen-density-xhigh/00_button_delete_press.png
deleted file mode 100644 (file)
index 1046336..0000000
Binary files a/res/screen-density-xhigh/00_button_delete_press.png and /dev/null differ
index b9b8e17..462cdcc 100644 (file)
@@ -164,7 +164,7 @@ SharePopup::OnListViewItemStateChanged(ListView& listView, int index, int elemen
                ArrayList* pPaths = new (std::nothrow) ArrayList(SingleObjectDeleter);
                pPaths->Construct(1);
                pPaths->Add(pPath);
-               pArgs->Add(new (std::nothrow) String(KEY_CALENDAR_PATH), pPaths);
+               pArgs->Add(new (std::nothrow) String(KEY_DATA_PATH), pPaths);
 
                AppControl::FindAndStart(operationId, &uri, null, null, pArgs, null);
                delete pArgs;
index fba1bf4..a4e80fd 100644 (file)
@@ -203,8 +203,6 @@ const wchar_t* IDB_MONTH_VIEW_BUBBLE_TODAY = L"P01_month-view_event_bubble_bg_to
 const wchar_t* IDB_YEAR_DAY_FOCUS = L"P01_year_day_focus.png";
 const wchar_t* IDB_YEAR_MONTH_FOCUS = L"P01_year_month_focus.png";
 
-//const wchar_t* IDB_BUTTON_DELETE = L"00_button_delete.png";
-//const wchar_t* IDB_BUTTON_DELETE_PRESS = L"00_button_delete_press.png";
 const wchar_t* IDB_BUTTON_MINUS = L"00_button_expand_minus_web.png";
 const wchar_t* IDB_BUTTON_MINUS_PRESS = L"00_button_expand_minus_press_web.png";
 const wchar_t* IDB_BUTTON_PLUS = L"00_button_plus_web.png";
@@ -235,13 +233,6 @@ const wchar_t* ID_OPERATION_SOCIAL_VIEW = L"http://tizen.org/appcontrol/operatio
 
 const wchar_t* MIME_TYPE_VCALENDAR = L"text/x-vcalendar";
 
-const wchar_t* KEY_CALENDAR_EVENT_ID = L"eventId";
-const wchar_t* KEY_CALENDAR_TODO_ID = L"todoId";
-const wchar_t* KEY_CALENDAR_ITEM_TYPE = L"itemType";
-const wchar_t* KEY_CALENDAR_VIEW_TYPE = L"viewType";
-const wchar_t* KEY_CALENDAR_SELECTION_MODE = L"selectionMode";
-const wchar_t* KEY_CALENDAR_PATH = L"path";
-
 const wchar_t* KEY_DATA_PATH = L"http://tizen.org/appcontrol/data/path";
 const wchar_t* KEY_DATA_SELECTION_MODE = L"http://tizen.org/appcontrol/data/selection_mode";
 const wchar_t* KEY_DATA_RETURN_RESULT = L"http://tizen.org/appcontrol/data/return_result";