diff options
author | Kurt Zenker <kz@openoffice.org> | 2007-09-06 13:14:17 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2007-09-06 13:14:17 +0000 |
commit | c3ff4f3412959886ff76c60507c8901a9d3608df (patch) | |
tree | a6a8164c53fbf956a24d3000563f55c9a28b0a8e /tools/source/datetime | |
parent | c286b8ce6611310cbf344890006095cdad0ea32d (diff) |
INTEGRATION: CWS mingwport06 (1.6.24); FILE MERGED
2007/08/27 14:34:48 vg 1.6.24.1: #i75499# pragma for MSVC
Diffstat (limited to 'tools/source/datetime')
-rw-r--r-- | tools/source/datetime/tdate.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/source/datetime/tdate.cxx b/tools/source/datetime/tdate.cxx index b5c4f230bed5..1f2159315048 100644 --- a/tools/source/datetime/tdate.cxx +++ b/tools/source/datetime/tdate.cxx @@ -4,9 +4,9 @@ * * $RCSfile: tdate.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: hr $ $Date: 2007-06-27 22:09:17 $ + * last change: $Author: kz $ $Date: 2007-09-06 14:14:17 $ * * 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_tools.hxx" #if defined WNT +#ifdef _MSC_VER #pragma warning (push,1) +#endif #include <tools/svwin.h> +#ifdef _MSC_VER #pragma warning (pop) +#endif #else #include <time.h> #endif |