diff -r ee64f059b8e1 -r 0930554dc389 internetradio2.0/datastructuressrc/irchannelserverurl.cpp --- a/internetradio2.0/datastructuressrc/irchannelserverurl.cpp Fri May 14 15:43:29 2010 +0300 +++ b/internetradio2.0/datastructuressrc/irchannelserverurl.cpp Thu May 27 12:46:34 2010 +0300 @@ -114,7 +114,7 @@ if( NULL == iServerName ) { CIRChannelServerUrl *tempUrl = const_cast(this); - tempUrl->iServerName = HBufC::NewL(0); + tempUrl->iServerName = HBufC::New(0); } return *iServerName; } @@ -131,7 +131,7 @@ if( NULL == iURL ) { CIRChannelServerUrl *tempUrl = const_cast(this); - tempUrl->iURL = HBufC::NewL(0); + tempUrl->iURL = HBufC::New(0); } return *iURL; }