summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/pdffontcache.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/gdi/pdffontcache.cxx')
-rw-r--r--vcl/source/gdi/pdffontcache.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/vcl/source/gdi/pdffontcache.cxx b/vcl/source/gdi/pdffontcache.cxx
index ccb131dd7cc9..68ede0bd676e 100644
--- a/vcl/source/gdi/pdffontcache.cxx
+++ b/vcl/source/gdi/pdffontcache.cxx
@@ -17,6 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+#include <typeinfo>
+
#include <sal/types.h>
#include "outfont.hxx"
@@ -30,8 +32,8 @@ using namespace vcl;
PDFFontCache::FontIdentifier::FontIdentifier( const PhysicalFontFace* pFont, bool bVertical ) :
m_nFontId( pFont->GetFontId() ),
- m_nMagic( pFont->GetFontMagic() ),
- m_bVertical( bVertical )
+ m_bVertical( bVertical ),
+ m_typeFontFace( const_cast<std::type_info*>(&typeid(pFont)) )
{
}