summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-01-31 20:23:25 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-01-31 20:23:46 +0000
commit6b6bbe539bf4c72773b280addc7150656f83713b (patch)
tree0b729d3f8e0c32b0873c2ee60e8ac6902654b70b /editeng
parent19f53f40039a935fee48fdf1fb1f801f489fd478 (diff)
SWAPLONG->OSL_SWAPDWORD
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/rtf/rtfgrf.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/rtf/rtfgrf.cxx b/editeng/source/rtf/rtfgrf.cxx
index f22a0a43f4e0..142b48d8541b 100644
--- a/editeng/source/rtf/rtfgrf.cxx
+++ b/editeng/source/rtf/rtfgrf.cxx
@@ -164,7 +164,7 @@ static sal_uInt8 aPal8[ 256 * 4 ] =
inline long SwapLong( long n )
{
#ifndef OSL_LITENDIAN
- return SWAPLONG( n );
+ return OSL_SWAPDWORD( n );
#else
return n;
#endif