diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-08-27 12:39:55 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-08-27 12:39:55 +0000 |
commit | fb628a14effee32636f98db38fff2d3187c9bf55 (patch) | |
tree | ba80f121e1c1292db0b96e7ae47d097edf141211 /autodoc/source | |
parent | e3a36366fde26dbe806200b3eca95f8c6861d3a6 (diff) |
INTEGRATION: CWS sb91 (1.16.10); FILE MERGED
2008/07/11 08:56:51 sb 1.16.10.1: #i91042# #include <cXXX> vs. <XXX.h> and using identifiers without std:: prefix (which is necessary for old MSVC versions)
Diffstat (limited to 'autodoc/source')
-rw-r--r-- | autodoc/source/display/html/cfrstd.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/autodoc/source/display/html/cfrstd.cxx b/autodoc/source/display/html/cfrstd.cxx index f60b5da6955e..3a01b1ba890b 100644 --- a/autodoc/source/display/html/cfrstd.cxx +++ b/autodoc/source/display/html/cfrstd.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: cfrstd.cxx,v $ - * $Revision: 1.16 $ + * $Revision: 1.17 $ * * This file is part of OpenOffice.org. * @@ -33,7 +33,7 @@ // NOT FULLY DEFINED SERVICES -#include <ctime> +#include <time.h> /* CSS Styles @@ -332,10 +332,10 @@ String MakeCopyRight() { StreamStr cr(700); - std::time_t + time_t gt; time(>); - std::tm * + tm * plt = localtime(>); int year = 1900 + plt->tm_year; |