# HG changeset patch # User William Roberts # Date 1279813419 -3600 # Node ID c1d3b75cab246c64b14639cd5e7c71c29d29ad29 # Parent 8651eaddcb0b97b036efcf64936cb041fe3a41a5# Parent 95d73125a0864f4f1a7b1a314b43c9bd59f13ab1 Catchup to latest Symbian^4 diff -r 95d73125a086 -r c1d3b75cab24 uiacceltk/hitchcock/Client/eabi/alfclientu.DEF --- a/uiacceltk/hitchcock/Client/eabi/alfclientu.DEF Tue Jul 06 15:18:10 2010 +0300 +++ b/uiacceltk/hitchcock/Client/eabi/alfclientu.DEF Thu Jul 22 16:43:39 2010 +0100 @@ -1069,7 +1069,7 @@ _ZTI26CAlfAverageMappingFunction @ 1068 NONAME ; ## _ZTI27CAlfConstantMappingFunction @ 1069 NONAME ; ## _ZTI9CAlfBrush @ 1070 NONAME ; ## - _ZTIN20CAlfCommandScheduler11CTimedEventE @ 1071 NONAME ; ## + _ZTIN20CAlfCommandScheduler11CTimedEventE @ 1071 NONAME ABSENT ; ## _ZTV10CAlfLayout @ 1072 NONAME ; ## _ZTV10CAlfVisual @ 1073 NONAME ; ## _ZTV11CAlfControl @ 1074 NONAME ; ## @@ -1108,7 +1108,7 @@ _ZTV26CAlfAverageMappingFunction @ 1107 NONAME ; ## _ZTV27CAlfConstantMappingFunction @ 1108 NONAME ; ## _ZTV9CAlfBrush @ 1109 NONAME ; ## - _ZTVN20CAlfCommandScheduler11CTimedEventE @ 1110 NONAME ; ## + _ZTVN20CAlfCommandScheduler11CTimedEventE @ 1110 NONAME ABSENT ; ## _ZThn32_N11CAlfControl11OfferEventLERK9TAlfEvent @ 1111 NONAME ; ## _ZThn40_NK19CAlfCurvePathLayout25MappingFunctionIdentifierEv @ 1112 NONAME ; ## _ZThn40_NK19CAlfCurvePathLayout8MapValueEfi @ 1113 NONAME ; ## diff -r 95d73125a086 -r c1d3b75cab24 uiacceltk/hitchcock/coretoolkit/src/HuiFxEffectParser.cpp --- a/uiacceltk/hitchcock/coretoolkit/src/HuiFxEffectParser.cpp Tue Jul 06 15:18:10 2010 +0300 +++ b/uiacceltk/hitchcock/coretoolkit/src/HuiFxEffectParser.cpp Thu Jul 22 16:43:39 2010 +0100 @@ -729,7 +729,7 @@ TReal32 time = ParseFloatAttributeL(aNode, KLitAt); TReal32 aux1 = ParseFloatAttributeL(aNode, KLitAux1, EFalse); TReal32 aux2 = ParseFloatAttributeL(aNode, KLitAux2, EFalse); - VALUE_TYPE value = ParseAnimationKeyFrameValueL(aNode->FirstChild(), aTimeLine); + VALUE_TYPE value = ParseAnimationKeyFrameValueL(aNode->FirstChild(), aTimeLine); TRAPD(err, aTimeLine.AppendKeyFrameL(time, value, aux1, aux2)); if (err != KErrNone) { diff -r 95d73125a086 -r c1d3b75cab24 uiacceltk/hitchcock/coretoolkit/src/HuiGridLayout.cpp --- a/uiacceltk/hitchcock/coretoolkit/src/HuiGridLayout.cpp Tue Jul 06 15:18:10 2010 +0300 +++ b/uiacceltk/hitchcock/coretoolkit/src/HuiGridLayout.cpp Thu Jul 22 16:43:39 2010 +0100 @@ -273,7 +273,8 @@ axis.iWeights.Reset(); for(TInt i = 0; i < aWeights.Count(); ++i) { - THuiMetric weight(TReal32(aWeights[i]), EHuiUnitWeight); + TInt weight_value(aWeights[i]); //evaluate this first and then use the value to initialize TReal (this fixes gcc 4.4.1 issue) + THuiMetric weight(TReal32(weight_value), EHuiUnitWeight); User::LeaveIfError(axis.iWeights.Append(weight)); } } @@ -284,7 +285,8 @@ axis.iWeights.Reset(); for(TInt i = 0; i < aWeights.Count(); ++i) { - THuiMetric weight(TReal32(aWeights[i]), EHuiUnitWeight); + TInt weight_value(aWeights[i]); //evaluate this first and then use the value to initialize TReal (this fixes gcc 4.4.1 issue) + THuiMetric weight(TReal32(weight_value), EHuiUnitWeight); User::LeaveIfError(axis.iWeights.Append(weight)); } } diff -r 95d73125a086 -r c1d3b75cab24 uiacceltk/hitchcock/goommonitor/inc/tracedefs.h --- a/uiacceltk/hitchcock/goommonitor/inc/tracedefs.h Tue Jul 06 15:18:10 2010 +0300 +++ b/uiacceltk/hitchcock/goommonitor/inc/tracedefs.h Thu Jul 22 16:43:39 2010 +0100 @@ -34,6 +34,6 @@ /** * Prefix macro for strings */ -#define _PREFIX_CHAR( aMsg ) (const char*)"[GOOM]: " ##aMsg +#define _PREFIX_CHAR( aMsg ) (const char*)"[GOOM]: " #aMsg #endif // TRACEDEFS_H