summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/impex.hxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2004-06-17 10:59:06 +0000
committerRüdiger Timm <rt@openoffice.org>2004-06-17 10:59:06 +0000
commit126fd4d4db717181c0356dbc911102c73bab3a5f (patch)
tree96d089805e27d39f690dcea56f23ebabaf921680 /sc/source/ui/inc/impex.hxx
parent2b105ff576fe582cf0b5b29a2349294c21c4c50e (diff)
INTEGRATION: CWS ooo64bit01 (1.7.414); FILE MERGED
2004/03/15 23:18:30 fa 1.7.414.1: First bits of 64-bitness. #i25651# & more
Diffstat (limited to 'sc/source/ui/inc/impex.hxx')
-rw-r--r--sc/source/ui/inc/impex.hxx10
1 files changed, 7 insertions, 3 deletions
diff --git a/sc/source/ui/inc/impex.hxx b/sc/source/ui/inc/impex.hxx
index 0f21b8d20d67..406bdd2c339f 100644
--- a/sc/source/ui/inc/impex.hxx
+++ b/sc/source/ui/inc/impex.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: impex.hxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: obo $ $Date: 2004-06-04 11:34:41 $
+ * last change: $Author: rt $ $Date: 2004-06-17 11:59:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -62,6 +62,10 @@
#ifndef SC_IMPEX_HXX
#define SC_IMPEX_HXX
+#ifndef _OSL_ENDIAN_H_
+#include <osl/endian.h>
+#endif
+
#ifndef _SOT_EXCHANGE_HXX //autogen
#include <sot/exchange.hxx>
#endif
@@ -178,7 +182,7 @@ public:
// static
inline BOOL ScImportExport::IsEndianSwap( const SvStream& rStrm )
{
-#ifdef __BIGENDIAN
+#ifdef OSL_BIGENDIAN
return rStrm.GetNumberFormatInt() != NUMBERFORMAT_INT_BIGENDIAN;
#else
return rStrm.GetNumberFormatInt() != NUMBERFORMAT_INT_LITTLEENDIAN;