diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-06-16 12:51:16 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-06-16 12:51:16 +0000 |
commit | 8d952c5ee83d87a7899cb5f88531e734986bafb9 (patch) | |
tree | fe6b5bc302e4538e28aa3017bbc6dbd6814fb4d4 /autodoc | |
parent | fe8740a04d190202799149a792745042da3ce373 (diff) |
INTEGRATION: CWS hr51 (1.14.4); FILE MERGED
2008/06/06 14:10:08 hr 1.14.4.1: #i88947#: includes; namespaces
Diffstat (limited to 'autodoc')
-rw-r--r-- | autodoc/source/display/html/cfrstd.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/autodoc/source/display/html/cfrstd.cxx b/autodoc/source/display/html/cfrstd.cxx index 7e11a8e4b073..31958b618f75 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.14 $ + * $Revision: 1.15 $ * * This file is part of OpenOffice.org. * @@ -332,11 +332,11 @@ String MakeCopyRight() { StreamStr cr(700); - time_t + std::time_t gt; - time(>); - tm * - plt = localtime(>); + std::time(>); + std::tm * + plt = std::localtime(>); int year = 1900 + plt->tm_year; cr << "Copyright © " |