diff options
author | Tor Lillqvist <tml@collabora.com> | 2013-10-13 14:08:45 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2013-10-13 14:08:45 +0300 |
commit | ce69f5d2cec786cbcd879e5e3fb3cb1bd8d4446c (patch) | |
tree | 4208d37a57556679cc2dcee6f4e3f8ff25d88e7e /xmloff | |
parent | 01b7e04172889cbc9e4ac404b105e18ddc062d6f (diff) |
Test _WIN32 instead of UNX as it's Windows that is the more specific case
Change-Id: Ifa5b522603a0ea592d873ae79b266091163e993f
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/style/xmlnumi.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/style/xmlnumi.cxx b/xmloff/source/style/xmlnumi.cxx index 4ac569edae5a..b3680e10b868 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 ; |