diff -r 03808033c9a2 -r 3785f754ee62 upnpavcontroller/upnpavcontrollerserver/src/upnpplaybacksession.cpp --- a/upnpavcontroller/upnpavcontrollerserver/src/upnpplaybacksession.cpp Wed Aug 18 10:02:50 2010 +0300 +++ b/upnpavcontroller/upnpavcontrollerserver/src/upnpplaybacksession.cpp Fri Sep 17 08:31:21 2010 +0300 @@ -1326,7 +1326,7 @@ // If iEventMessage is invalid and mute's value is // right, we will append event to iEventQue. // Else nothing to do. - iEventQue.Append( unEvent ); + iEventQue.AppendL( unEvent ); } } @@ -1359,7 +1359,7 @@ } else { - iEventQue.Append( unEvent ); + iEventQue.AppendL( unEvent ); } } @@ -1397,7 +1397,7 @@ else { __LOG( "AvtLastChangeEvent - appending playuser" ); - iEventQue.Append( event ); + iEventQue.AppendL( event ); } } else if( aLastChange.Find( KStopped ) >= 0 && @@ -1416,7 +1416,7 @@ else { __LOG( "AvtLastChangeEvent - appending stopuser" ); - iEventQue.Append( event ); + iEventQue.AppendL( event ); } } else if( aLastChange.Find( KPaused ) >= 0 && @@ -1436,7 +1436,7 @@ else { __LOG( "AvtLastChangeEvent - appending pauseuser" ); - iEventQue.Append( event ); + iEventQue.AppendL( event ); } } }