diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-08-27 13:00:16 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-08-27 13:00:16 +0000 |
commit | 62562b0870c03424b7d3f77b39a72e26042079ff (patch) | |
tree | ebe24de6872f3bb071a861b1f7fc43516eab1223 /unotools | |
parent | 9801adf3efe1911e26a48a2beccd76c5366b48ff (diff) |
INTEGRATION: CWS sb91 (1.42.8); FILE MERGED
2008/07/11 08:34:41 sb 1.42.8.1: #i91042# #include <cXXX> vs. <XXX.h> and using identifiers without std:: prefix (which is necessary for old MSVC versions)
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/i18n/localedatawrapper.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unotools/source/i18n/localedatawrapper.cxx b/unotools/source/i18n/localedatawrapper.cxx index 50a40fe08cb8..074ff7af716a 100644 --- a/unotools/source/i18n/localedatawrapper.cxx +++ b/unotools/source/i18n/localedatawrapper.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: localedatawrapper.cxx,v $ - * $Revision: 1.42 $ + * $Revision: 1.43 $ * * This file is part of OpenOffice.org. * @@ -31,8 +31,8 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_unotools.hxx" -#include <cstring> // memcpy() -#include <cstdio> // fprintf(), stderr +#include <string.h> // memcpy() +#include <stdio.h> // fprintf(), stderr #include <unotools/localedatawrapper.hxx> #include <unotools/numberformatcodewrapper.hxx> |