|
List Info
Thread: CR: Fix to resolve build error in clientapps for symbian81
|
|
| CR: Fix to resolve build error in
clientapps for symbian81 |

|
2006-05-26 12:50:11 |
|
Date : 26 May 2006
Issue : Build Failures in (clientapps) symbian 81 platform
Overview:
- Replaced CHXURL object with HXURLRep in CHXAvUtil as
CHXURL needs context which is not available here.
- Replaced clntcore with hxmedplyeng in install.pcf
- CHXLitePrefs
class is having RegisterContext function in place of SetContext
function
Platform: symbian 8.1
Branch : Head
File Modified:
- clientapps/symbiancommon/chxavutil.cpp
- clientapps/symbianplayer/install.pcf
-
clientapps/symbianplayer/platform/symbian/chxclientenginemanager.cpp
Files Added: Nil
CVS Diff:
Index: symbiancommon/chxavutil.cpp
===================================================================
RCS file: /cvsroot/clientapps/symbiancommon/chxavutil.cpp,v
retrieving revision 1.15
diff -u -r1.15 chxavutil.cpp
--- symbiancommon/chxavutil.cpp 24 Mar 2004 00:01:27
-0000 1.15
+++ symbiancommon/chxavutil.cpp 26 May 2006 12:05:05
-0000
 -223,16 +223,12  
CHXAvUtil::AllocStdPathFromPlayerUrlL(const CHXString&
strBadPath)
{
// pass through CHXURL to get path
- CHXURL url(strBadPath);
+ HXURLRep url(strBadPath);
- comptr<IHXValues> headers;
- headers.Take(url.GetProperties());
- HX_ASSERT(headers);
-
//dbg: umpObject(headers);
CHXString strPath;
- val::GetString(headers, PROPERTY_FULLPATH, strPath,
val::buffer);
+ strPath = url.Path();
// possibly unescape (so it is more
readable)
CHXAvEscapedString escapedString(strPath);
 -263,16 +259,13  
CHXAvUtil::AllocHostFromPlayerUrlL(const CHXString&
strUrl)
{
// pass through CHXURL to get path
- CHXURL url(strUrl);
+ HXURLRep url(strUrl);
- comptr<IHXValues> headers;
- headers.Take(url.GetProperties());
- HX_ASSERT(headers);
//dbg: umpObject(headers);
CHXString strHost;
- val::GetString(headers, PROPERTY_HOST, strHost,
val::buffer);
+ strHost = url.Host();
// possibly unescape (so it is more
readable)
CHXAvEscapedString escapedString(strHost);
Index: symbianplayer/install.pcf
===================================================================
RCS file: /cvsroot/clientapps/symbianplayer/install.pcf,v
retrieving revision 1.15
diff -u -r1.15 install.pcf
--- symbianplayer/install.pcf 22 Mar 2006
22:35:41
-0000 1.15
+++ symbianplayer/install.pcf 26 May 2006
12:05:06 -0000
 -139,7 +139,7  
'amrn' :
'datatype/amr/codec/amr-nb/[target]/amrn.dll',
'amrw' :
'datatype/amr/codec/amr-wb/[target]/amrw.dll',
'audplin' :
'datatype/group/audio/[target]/audplin.dll',
-'clntcore' :
'client/core/[target]/clntcore.dll',
+'hxmedplyeng' : 'client/core/[target]/hxmedplyeng.dll',
'comimgff' :
'datatype/image/unified/fileformat/[target]/comimgff.dll',
'comimgrend' :
'datatype/image/unified/renderer/[target]/comimgrend.dll',
'cook' & | |