From 2e6fe38b005c47c8c3a1eac0298ccc295f3cf4e5 Mon Sep 17 00:00:00 2001 From: Sven Jacobi Date: Fri, 20 Oct 2000 08:57:34 +0000 Subject: #79431# fixed unicode conversion bug that happens when unicode characters were mapped to a starbats font --- svx/source/svdraw/svdfppt.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'svx') diff --git a/svx/source/svdraw/svdfppt.cxx b/svx/source/svdraw/svdfppt.cxx index 4e70f3fa8556..a901df54bd0a 100644 --- a/svx/source/svdraw/svdfppt.cxx +++ b/svx/source/svdraw/svdfppt.cxx @@ -2,9 +2,9 @@ * * $RCSfile: svdfppt.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: sj $ $Date: 2000-10-19 17:20:24 $ + * last change: $Author: sj $ $Date: 2000-10-20 09:57:34 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -5086,7 +5086,7 @@ PPTStyleTextPropReader::PPTStyleTextPropReader( SvStream& rIn, SdrPowerPointImpo pCharPropsATable[ nCurrentPara ]++; PPTCharPropSet* pCPropSet = new PPTCharPropSet( aCharPropSet ); pCPropSet->SetFont( rMan.pFonts->Count() - 1 ); - pCPropSet->maString = (char)( nCurrentSpecMarker >> 24 ); //aString[ (UINT16)nCharAnzRead ]; + pCPropSet->maString = (sal_uInt8)( nCurrentSpecMarker >> 24 ); aCharPropList.Insert( pCPropSet, LIST_APPEND ); nCharCount--; nCharAnzRead++; -- cgit