[Libreoffice-commits] .: xmlhelp/source

Caolán McNamara caolan at kemper.freedesktop.org
Tue Apr 24 06:25:15 PDT 2012


 xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx |   10 ++++++++++
 1 file changed, 10 insertions(+)

New commits:
commit 41135b6dd86200d125095749e044d593a0452c41
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Tue Apr 24 14:24:09 2012 +0100

    WaE: silence warnings from msvc2008 (again)

diff --git a/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx b/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx
index ca333ea..6134030 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>


More information about the Libreoffice-commits mailing list