diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2003-06-10 13:31:49 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2003-06-10 13:31:49 +0000 |
commit | 986ec67b7bf67f0cb1a59c1688b74c74e608a210 (patch) | |
tree | c87e7026151737d1a6bb4fc9ebedd5c5092d7fb0 /vcl/win | |
parent | cb76055bd6e3842f9b3effe02c7156b4ba4f00cd (diff) |
INTEGRATION: CWS vcl11 (1.43.24); FILE MERGED
2003/06/03 08:57:46 pl 1.43.24.2: RESYNC: (1.43-1.44); FILE MERGED
2003/06/02 16:48:18 pl 1.43.24.1: #109639# non-vertical glyphs with GF_ISCHAR
Diffstat (limited to 'vcl/win')
-rw-r--r-- | vcl/win/source/gdi/salgdi3.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/win/source/gdi/salgdi3.cxx b/vcl/win/source/gdi/salgdi3.cxx index 4d4a5745b07d..82c4790048dd 100644 --- a/vcl/win/source/gdi/salgdi3.cxx +++ b/vcl/win/source/gdi/salgdi3.cxx @@ -2,9 +2,9 @@ * * $RCSfile: salgdi3.cxx,v $ * - * $Revision: 1.44 $ + * $Revision: 1.45 $ * - * last change: $Author: vg $ $Date: 2003-05-28 12:35:39 $ + * last change: $Author: vg $ $Date: 2003-06-10 14:31:49 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -2215,7 +2215,7 @@ BOOL SalGraphics::CreateFontSubset( const rtl::OUString& rToFile, if( SYMBOL_CHARSET == (BYTE)pFont->mpSysData ) if( (nGlyphIdx & 0xF000) == 0 ) nGlyphIdx |= 0xF000; - nGlyphIdx = MapChar( aSftTTF.get(), nGlyphIdx, 1 ); + nGlyphIdx = MapChar( aSftTTF.get(), nGlyphIdx, (nGlyphIdx & GF_ROTMASK) ? 1 : 0 ); } aShortIDs[i] = static_cast<USHORT>( nGlyphIdx ); if( !nGlyphIdx ) |