fix jira issue N_SE-46427
authorChangyong Jeon <fin10.jeon@samsung.com>
Tue, 16 Jul 2013 01:44:47 +0000 (10:44 +0900)
committerChangyong Jeon <fin10.jeon@samsung.com>
Tue, 16 Jul 2013 01:44:47 +0000 (10:44 +0900)
Change-Id: I41edcdd234ea255df3782a96a349dc4f469ce8c4

src/ClEventEditorForm.cpp

index c91a04a..968c87d 100644 (file)
@@ -1048,7 +1048,7 @@ EventEditorForm::CreateTitleItemN(int itemWidth, const String& title)
        pTitle = new (std::nothrow) EditField();
        pTitle->Construct(Rectangle(0, 0, itemWidth, H_ITEM), EDIT_FIELD_STYLE_NORMAL, INPUT_STYLE_OVERLAY,
                                        false, EDITFIELD_LIMIT_LENGTH);
-
+       pTitle->SetColor(EDIT_STATUS_NORMAL, Color(0, 0, 0, 0));
        pItem->AddControl(pTitle);
        pItem->SetIndividualSelectionEnabled(pTitle, true);
 
@@ -1078,7 +1078,6 @@ EventEditorForm::CreateStartTimeItemN(int itemWidth, const DateTime& start, bool
 
        EditDate* pStartDate = new (std::nothrow) EditDate();
        pStartDate->Construct(Point(0, Y_DATE_SELECTOR), ResourceManager::GetString(IDS_EVENT_EDITOR_FROM));
-
        pItem->AddControl(pStartDate);
 
        pStartDate->SetYearRange(Calendarbook::GetMinDateTime().GetYear() + 1, Calendarbook::GetMaxDateTime().GetYear() - 1);
@@ -1210,8 +1209,7 @@ EventEditorForm::CreateDescriptionItemN(int itemWidth, const String& description
        __pExpandableEditAreaNote = new (std::nothrow) ExpandableEditArea();
        __pExpandableEditAreaNote->Construct(Rectangle(0, 0, itemWidth, H_DESCRIPTION),
                                                                EXPANDABLE_EDIT_AREA_STYLE_NORMAL, EXPANDABLE_EDIT_AREA_TITLE_STYLE_NONE, EXPANDABLE_EDIT_MAX_LINE);
-       __pExpandableEditAreaNote->SetBackgroundBitmap(EDIT_STATUS_NORMAL, *ResourceManager::GetBlankBitmap());
-       __pExpandableEditAreaNote->SetBackgroundBitmap(EDIT_STATUS_PRESSED, *ResourceManager::GetBlankBitmap());
+       __pExpandableEditAreaNote->SetColor(EDIT_STATUS_NORMAL, Color(0, 0, 0, 0));
        __pExpandableEditAreaNote->AddExpandableEditAreaEventListener(*this);
        __pExpandableEditAreaNote->SetText(description);
        __pExpandableEditAreaNote->SetGuideText(ResourceManager::GetString(IDS_CLD_BODY_CREATE_DESCRIPTION));
@@ -1233,7 +1231,7 @@ EventEditorForm::CreateLocationItemN(int itemWidth, const String& location)
        EditField* pLocation = new (std::nothrow) EditField();
        pLocation->Construct(Rectangle(0, 0, itemWidth, H_ITEM), EDIT_FIELD_STYLE_NORMAL, INPUT_STYLE_OVERLAY,
                                        false, EDITFIELD_LIMIT_LENGTH);
-
+       pLocation->SetColor(EDIT_STATUS_NORMAL, Color(0, 0, 0, 0));
        pItem->AddControl(pLocation);
        pItem->SetIndividualSelectionEnabled(pLocation, true);