diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-06-18 06:58:42 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-06-18 06:58:42 +0000 |
commit | bbdf0b5a98e06f25e1193a3be4f86a7215623c4b (patch) | |
tree | 3e11cf2893db9725c51be5091d42f98240f34d4e /autodoc | |
parent | f6b2fd24ab2ea83d42bd1bdaaf23ee8f66555243 (diff) |
#i90829# Remove 'std::' for time and localtime.
Diffstat (limited to 'autodoc')
-rw-r--r-- | autodoc/source/display/html/cfrstd.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/autodoc/source/display/html/cfrstd.cxx b/autodoc/source/display/html/cfrstd.cxx index 31958b618f75..f60b5da6955e 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.15 $ + * $Revision: 1.16 $ * * This file is part of OpenOffice.org. * @@ -334,9 +334,9 @@ MakeCopyRight() StreamStr cr(700); std::time_t gt; - std::time(>); + time(>); std::tm * - plt = std::localtime(>); + plt = localtime(>); int year = 1900 + plt->tm_year; cr << "Copyright © " |