notes/notesui/noteseditor/src/notesnoteeditor.cpp
changeset 57 bb2d3e476f29
parent 55 2c54b51f39c4
child 70 a5ed90760192
--- a/notes/notesui/noteseditor/src/notesnoteeditor.cpp	Mon Jul 26 13:54:38 2010 +0530
+++ b/notes/notesui/noteseditor/src/notesnoteeditor.cpp	Mon Aug 09 18:30:52 2010 +0530
@@ -205,7 +205,7 @@
 			mMarkFavouriteAction->setText(
 					hbTrId("txt_notes_opt_remove_from_favorites"));
 		} else {
-			iconName = "";
+			iconName = " ";
 
 			mMarkFavouriteAction->setText(
 					hbTrId("txt_notes_opt_mark_as_favorite"));
@@ -220,7 +220,7 @@
 		// Set the sub heading
 		mViewHeading->setPlainText(hbTrId("txt_notes_subhead_note"));
 	} else {
-		mFavouriteIcon->setIcon(HbIcon(""));
+		mFavouriteIcon->setIcon(HbIcon(" "));
 
 		// For handling the edit of note when text is given as input
 		mTextEditor->setPlainText(mOwner->mModifiedNote.description());
@@ -429,7 +429,7 @@
 		mOwner->mModifiedNote.setFavourite(0);
 
 		// Update the icon.
-		mFavouriteIcon->setIcon(HbIcon(""));
+		mFavouriteIcon->setIcon(HbIcon(" "));
 
 		// Change the text on the action.
 		mMarkFavouriteAction->setText(
@@ -553,7 +553,7 @@
 	mOwner->mModifiedNote = mOwner->mOriginalNote = entry;
 	mOwner->mNewEntry = true;
 
-	mFavouriteIcon->setIcon(HbIcon(""));
+	mFavouriteIcon->setIcon(HbIcon(" "));
 
 	// For handling the edit of note when text is given as input
 	mTextEditor->setPlainText(mOwner->mModifiedNote.description());