summaryrefslogtreecommitdiff
path: root/extensions/source/update/check/download.cxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2007-09-06 12:37:50 +0000
committerKurt Zenker <kz@openoffice.org>2007-09-06 12:37:50 +0000
commit817a3ffe67b74908cd803a3e9c0a18ad3f7faca2 (patch)
treeeee6237c6ed819f1496a1596b5f1b148ab0ec548 /extensions/source/update/check/download.cxx
parent83e4c7da2d9cf2e22d73251ea218200609d8b283 (diff)
INTEGRATION: CWS mingwport06 (1.3.12); FILE MERGED
2007/08/27 13:02:54 vg 1.3.12.1: #i75499# pragma for MSVC
Diffstat (limited to 'extensions/source/update/check/download.cxx')
-rw-r--r--extensions/source/update/check/download.cxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/extensions/source/update/check/download.cxx b/extensions/source/update/check/download.cxx
index aca7aebcc3a7..3505eb0b339a 100644
--- a/extensions/source/update/check/download.cxx
+++ b/extensions/source/update/check/download.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: download.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: vg $ $Date: 2007-08-30 15:46:28 $
+ * last change: $Author: kz $ $Date: 2007-09-06 13:37:50 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -37,9 +37,13 @@
#include "precompiled_extensions.hxx"
#if defined WNT
+#ifdef _MSC_VER
#pragma warning(push, 1) /* disable warnings within system headers */
+#endif
#include <curl/curl.h>
+#ifdef _MSC_VER
#pragma warning(pop)
+#endif
#else
#include <curl/curl.h>
#endif