summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/WW8Sttbf.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-05-28 12:21:19 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-05-28 13:03:02 +0100
commitccf238b307d144623c1075902d256aad78fc69f0 (patch)
treed78994b507eb1db469f0d2f6f1cb6e5327f71ba1 /sw/source/filter/ww8/WW8Sttbf.cxx
parent25a605f36544582bd454d4bc0e71e684749a0b80 (diff)
OSL_LITTLEENDIAN->OSL_LITENDIAN
thanks Norbert :-) Change-Id: I03942dd80bff39f4cc9a19117a4c5c5e4dfcd325
Diffstat (limited to 'sw/source/filter/ww8/WW8Sttbf.cxx')
-rw-r--r--sw/source/filter/ww8/WW8Sttbf.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/WW8Sttbf.cxx b/sw/source/filter/ww8/WW8Sttbf.cxx
index fecb58bec923..4280a0a09a0d 100644
--- a/sw/source/filter/ww8/WW8Sttbf.cxx
+++ b/sw/source/filter/ww8/WW8Sttbf.cxx
@@ -87,7 +87,7 @@ namespace ww8
sal_uInt32 nAvailable = (mn_size - nStartOff)/sizeof(sal_Unicode);
if (nCount > nAvailable)
nCount = nAvailable;
-#if defined OSL_LITTLEENDIAN
+#if defined OSL_LITENDIAN
aResult = rtl::OUString(reinterpret_cast<const sal_Unicode *>(
mp_data.get() + nStartOff), nCount);
#else