Kaydet (Commit) 8b736528 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Test _WIN32 instead of UNX as it is Win32 that's different here

Change-Id: I05e93ef13523a4729c46c9dbf36657d7288c62e6
üst 3db218c8
......@@ -72,10 +72,10 @@ using namespace ::com::sun::star::awt;
using namespace ::com::sun::star::util;
using ::com::sun::star::frame::XModel;
#if defined(UNX)
const char ODatabaseImportExport::sNewLine = '\012';
#else
#ifdef _WIN32
const char ODatabaseImportExport::sNewLine[] = "\015\012";
#else
const char ODatabaseImportExport::sNewLine = '\012';
#endif
const static char sMyBegComment[] = "<!-- ";
......
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