diff options
Diffstat (limited to 'drawinglayer/source/tools/emfphelperdata.cxx')
-rw-r--r-- | drawinglayer/source/tools/emfphelperdata.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drawinglayer/source/tools/emfphelperdata.cxx b/drawinglayer/source/tools/emfphelperdata.cxx index 513b8fbce930..419cd778f7be 100644 --- a/drawinglayer/source/tools/emfphelperdata.cxx +++ b/drawinglayer/source/tools/emfphelperdata.cxx @@ -1225,7 +1225,7 @@ namespace emfplushelper font->family, // font family emptyString, // (no) font style font->Bold() ? 8u : 1u, // weight: 8 = bold - font->family.compareTo("SYMBOL") == 0, // symbol + font->family == "SYMBOL", // symbol stringFormat->DirectionVertical(), // vertical font->Italic(), // italic false, // monospaced @@ -1617,7 +1617,7 @@ namespace emfplushelper font->family, // font family emptyString, // (no) font style font->Bold() ? 8u : 1u, // weight: 8 = bold - font->family.compareTo("SYMBOL") == 0, // symbol + font->family == "SYMBOL", // symbol optionFlags & 0x2, // vertical font->Italic(), // italic false, // monospaced |