[Libreoffice-commits] core.git: xmloff/source

Tor Lillqvist tml at collabora.com
Sun Oct 13 04:12:15 PDT 2013


 xmloff/source/style/xmlnumi.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit ce69f5d2cec786cbcd879e5e3fb3cb1bd8d4446c
Author: Tor Lillqvist <tml at collabora.com>
Date:   Sun Oct 13 14:08:45 2013 +0300

    Test _WIN32 instead of UNX as it's Windows that is the more specific case
    
    Change-Id: Ifa5b522603a0ea592d873ae79b266091163e993f

diff --git a/xmloff/source/style/xmlnumi.cxx b/xmloff/source/style/xmlnumi.cxx
index 4ac569e..b3680e1 100644
--- a/xmloff/source/style/xmlnumi.cxx
+++ b/xmloff/source/style/xmlnumi.cxx
@@ -1283,10 +1283,10 @@ void SvxXMLListStyleContext::SetDefaultStyle(
         // TODO: Bullet-Font
         awt::FontDescriptor aFDesc;
         aFDesc.Name = OUString(
-#if defined UNX
-                        "starbats"
-#else
+#ifdef _WIN32
                         "StarBats"
+#else
+                        "starbats"
 #endif
                                         );
         aFDesc.Family = FAMILY_DONTKNOW ;


More information about the Libreoffice-commits mailing list