diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-11-02 15:29:54 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-11-02 15:29:54 +0000 |
commit | 65f8a3a807197c09d9509acd0cfb87b554bd0c8d (patch) | |
tree | facb58f0f28b77add1e4e121141cc23aa4d4d586 /autodoc/source/display/html/outfile.cxx | |
parent | d0455e924d42894c10cf7ef5c7508106bebf4a16 (diff) |
INTEGRATION: CWS adc18 (1.9.2); FILE MERGED
2007/10/18 15:23:13 np 1.9.2.1: #i81775#
Diffstat (limited to 'autodoc/source/display/html/outfile.cxx')
-rw-r--r-- | autodoc/source/display/html/outfile.cxx | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/autodoc/source/display/html/outfile.cxx b/autodoc/source/display/html/outfile.cxx index 895640801fc2..d85669d5270f 100644 --- a/autodoc/source/display/html/outfile.cxx +++ b/autodoc/source/display/html/outfile.cxx @@ -4,9 +4,9 @@ * * $RCSfile: outfile.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: vg $ $Date: 2007-09-18 13:53:33 $ + * last change: $Author: hr $ $Date: 2007-11-02 16:29:54 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -236,8 +236,9 @@ const char * const HtmlDocuFile::HtmlDocuFile() : sFilePath(), sTitle(), + sLocation(), sCopyright(), - nDepth(0), + nDepthInOutputTree(0), aBodyData(), aBuffer(60000) // Grows dynamically when necessary. { @@ -252,7 +253,7 @@ HtmlDocuFile::SetLocation( const csv::ploc::Path & i_rFilePath, i_rFilePath.Get( sPath_ ); sFilePath = sPath_.c_str(); - nDepth = i_depthInOutputTree; + nDepthInOutputTree = i_depthInOutputTree; } void @@ -358,7 +359,7 @@ HtmlDocuFile::WriteHeader( csv::File & io_aFile ) aBuffer.write( s1 ); aBuffer.write( sTitle ); aBuffer.write( s2 ); - aBuffer.write( output::get_UpLink(nDepth) ); + aBuffer.write( output::get_UpLink(nDepthInOutputTree) ); aBuffer.write( C_sHFN_Css ); aBuffer.write( s3 ); |