Kaydet (Commit) 816a8886 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Test _WIN32 instead of UNX as it's Windows that is the special case

Change-Id: I6252f4737dbc297525792412e006b2ed0147a0d6
üst 0937d07c
...@@ -31,11 +31,7 @@ class ScFieldEditEngine; ...@@ -31,11 +31,7 @@ class ScFieldEditEngine;
class ScExportBase class ScExportBase
{ {
public: public:
#if defined UNX
static const sal_Char sNewLine;
#else
static const sal_Char sNewLine[]; static const sal_Char sNewLine[];
#endif
protected: protected:
......
...@@ -24,10 +24,10 @@ ...@@ -24,10 +24,10 @@
//------------------------------------------------------------------ //------------------------------------------------------------------
#if defined(UNX) #ifdef _WIN32
const sal_Char ScExportBase::sNewLine = '\012';
#else
const sal_Char ScExportBase::sNewLine[] = "\015\012"; const sal_Char ScExportBase::sNewLine[] = "\015\012";
#else
const sal_Char ScExportBase::sNewLine[] = "\012";
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment