diff options
author | Sven Jacobi <sj@openoffice.org> | 2000-10-20 08:57:34 +0000 |
---|---|---|
committer | Sven Jacobi <sj@openoffice.org> | 2000-10-20 08:57:34 +0000 |
commit | 2e6fe38b005c47c8c3a1eac0298ccc295f3cf4e5 (patch) | |
tree | 1f05ebcc3b67f78364281c5c4d53e23e4c7c0f60 /svx | |
parent | 2c137ceb4bde90dc0c3de7a3fc0fc909a363a525 (diff) |
#79431# fixed unicode conversion bug that happens when unicode characters were mapped to a starbats font
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/svdraw/svdfppt.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
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++; |