summaryrefslogtreecommitdiff
path: root/xmlhelp
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-04-24 14:24:09 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-04-24 14:24:47 +0100
commit41135b6dd86200d125095749e044d593a0452c41 (patch)
tree430184482e6a3a3130829def17aa54625d6eecce /xmlhelp
parent81fb27c27bfbd7b1808bb442277476065e39fb56 (diff)
WaE: silence warnings from msvc2008 (again)
Diffstat (limited to 'xmlhelp')
-rw-r--r--xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx10
1 files changed, 10 insertions, 0 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx b/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx
index ca333eaeaf8f..61340307e9d7 100644
--- a/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx
+++ b/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx
@@ -34,8 +34,18 @@
#include <com/sun/star/script/XInvocation.hpp>
#include <l10ntools/HelpSearch.hxx>
+
+#if defined _MSC_VER
+#pragma warning(push)
+#pragma warning(disable : 4068 4263 4264 4266)
+#endif
+
#include <CLucene.h>
+#if defined _MSC_VER
+#pragma warning(pop)
+#endif
+
#include <rtl/oustringostreaminserter.hxx>
#include <algorithm>