summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@novell.com>2011-08-23 12:24:40 +0300
committerTor Lillqvist <tlillqvist@novell.com>2011-08-23 12:29:36 +0300
commit6c1e8719013b47ff3d3954173a17e49f3a361009 (patch)
treef1126c01ebb01a641a47f7c7b89dd491694e1e01 /fpicker
parent85bee97305cc4b411c7dccbba6e4157f7985bb74 (diff)
Avoid compilation error in dbgutil (_DEBUG) MSVC build
Define _HAS_ITERATOR_DEBUGGING as 0 so that we don't use the debugging ordering predicates, which cause compilation errors thanks to the way we use std::equal_range(). In this case it seemed fairly hairy to fix that, so...
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/office/OfficeControlAccess.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/fpicker/source/office/OfficeControlAccess.cxx b/fpicker/source/office/OfficeControlAccess.cxx
index 50632bf89d95..74bd77b8cd35 100644
--- a/fpicker/source/office/OfficeControlAccess.cxx
+++ b/fpicker/source/office/OfficeControlAccess.cxx
@@ -26,6 +26,8 @@
*
************************************************************************/
+#define _HAS_ITERATOR_DEBUGGING 0
+
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_fpicker.hxx"