browserui/browser/FeedsSrc/FeedsEditFeedDialog.cpp
changeset 1 57d5b8e231c4
parent 0 84ad3b177aa3
child 5 e45c3f40ea5f
--- a/browserui/browser/FeedsSrc/FeedsEditFeedDialog.cpp	Mon Mar 30 12:49:49 2009 +0300
+++ b/browserui/browser/FeedsSrc/FeedsEditFeedDialog.cpp	Fri May 08 08:18:43 2009 +0300
@@ -166,7 +166,6 @@
 //
 void CFeedsEditFeedDialog::HandleFreqCmdL()
     {
-    TBuf<32> title(_L("Auto update"));
     TInt currentlySelected = KAutoUpdatingOff;
 
     // options array
@@ -219,7 +218,10 @@
             break;
         }
 
-    currentlySelected = ShowRadioButtonSettingPageL(title,values,currentlySelected);
+    HBufC* title;
+    title=iCoeEnv->AllocReadResourceLC(R_FEEDS_AUTOUPDATING_FEED);
+    currentlySelected = ShowRadioButtonSettingPageL(*title,values,currentlySelected);
+    CleanupStack::PopAndDestroy();  // title
 
     if(!iActionCancelled)
         {
@@ -428,8 +430,7 @@
                     HBufC* note = StringLoader::LoadLC( R_FEEDS_DATAQUERY_AUTOUPDATEWARN );
                     if(iPreviousFreq == 0)
                         {
-                      //  ShowInfoDialogwithOkSoftKeyL( note->Des() );    
-                        ShowInfoDialogwithOkSoftKeyL( _L("Enabling automatic updating may increase your monthly phone bill") );    
+                        ShowInfoDialogwithOkSoftKeyL(note->Des());
                         }
                     CleanupStack::PopAndDestroy(); // note
                     iPreviousFreq = iFreq;