diff options
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 © " |