[Libreoffice-commits] .: sw/source
Tor Lillqvist
tml at kemper.freedesktop.org
Sun Sep 4 22:17:39 PDT 2011
sw/source/core/crsr/crbm.cxx | 4 ++++
sw/source/core/doc/docbm.cxx | 4 ++++
sw/source/core/unocore/unoportenum.cxx | 5 ++++-
sw/source/filter/writer/writer.cxx | 5 +++++
4 files changed, 17 insertions(+), 1 deletion(-)
New commits:
commit 68795fe0dce69183400f775e06a2651565657231
Author: Tor Lillqvist <tlillqvist at suse.com>
Date: Mon Sep 5 08:09:08 2011 +0300
#define _HAS_ITERATOR_DEBUGGING 0 to fix --enable-dbgutil MSVC compilation
diff --git a/sw/source/core/crsr/crbm.cxx b/sw/source/core/crsr/crbm.cxx
index 33a2c68..e5ce334 100644
--- a/sw/source/core/crsr/crbm.cxx
+++ b/sw/source/core/crsr/crbm.cxx
@@ -26,6 +26,10 @@
*
************************************************************************/
+#ifdef _MSC_VER
+#define _HAS_ITERATOR_DEBUGGING 0
+#endif
+
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_sw.hxx"
diff --git a/sw/source/core/doc/docbm.cxx b/sw/source/core/doc/docbm.cxx
index b88de10..e667e20 100644
--- a/sw/source/core/doc/docbm.cxx
+++ b/sw/source/core/doc/docbm.cxx
@@ -26,6 +26,10 @@
*
************************************************************************/
+#ifdef _MSC_VER
+#define _HAS_ITERATOR_DEBUGGING 0
+#endif
+
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_sw.hxx"
diff --git a/sw/source/core/unocore/unoportenum.cxx b/sw/source/core/unocore/unoportenum.cxx
index 73c54a9..42e6c96 100644
--- a/sw/source/core/unocore/unoportenum.cxx
+++ b/sw/source/core/unocore/unoportenum.cxx
@@ -26,10 +26,13 @@
*
************************************************************************/
+#ifdef _MSC_VER
+#define _HAS_ITERATOR_DEBUGGING 0
+#endif
+
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_sw.hxx"
-
#include <unoport.hxx>
#include <IMark.hxx>
// #i81002#
diff --git a/sw/source/filter/writer/writer.cxx b/sw/source/filter/writer/writer.cxx
index b5fdfb8..47dc806 100644
--- a/sw/source/filter/writer/writer.cxx
+++ b/sw/source/filter/writer/writer.cxx
@@ -26,8 +26,13 @@
*
************************************************************************/
+#ifdef _MSC_VER
+#define _HAS_ITERATOR_DEBUGGING 0
+#endif
+
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_sw.hxx"
+
#include <hintids.hxx>
#define _SVSTDARR_STRINGSSORTDTOR
More information about the Libreoffice-commits
mailing list