diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-11-02 15:26:22 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-11-02 15:26:22 +0000 |
commit | 096bd4e93531b9e81d1bc94330b09c47c703c910 (patch) | |
tree | 6d75384f7b4c3b59637a6cdb40f906447793dc6d /autodoc/source/display/html/easywri.cxx | |
parent | 8efc941d6c77eaa77e6875a0160db5a4c25c29e9 (diff) |
INTEGRATION: CWS adc18 (1.5.2); FILE MERGED
2007/10/19 10:37:27 np 1.5.2.1: #i81775#
Diffstat (limited to 'autodoc/source/display/html/easywri.cxx')
-rw-r--r-- | autodoc/source/display/html/easywri.cxx | 88 |
1 files changed, 2 insertions, 86 deletions
diff --git a/autodoc/source/display/html/easywri.cxx b/autodoc/source/display/html/easywri.cxx index 23e808c53836..c231b9709045 100644 --- a/autodoc/source/display/html/easywri.cxx +++ b/autodoc/source/display/html/easywri.cxx @@ -4,9 +4,9 @@ * * $RCSfile: easywri.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: vg $ $Date: 2007-09-18 13:51:41 $ + * last change: $Author: hr $ $Date: 2007-11-02 16:26:22 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -84,90 +84,6 @@ csi::xml::Element & EasyWriter::Out() { csv_assert( aCurDestination.size() > 0); -// if ( aCurDestination.size() <= 0 ) -// csv_assert( false ); - return *aCurDestination.top(); } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#if 0 -/* -class Html_Inverse : public Html::Piece -{ - public: - Html_Inverse( - DYN Html::Piece & let_drInhalt, - const udmstri i_sBgColor ); - ~Html_Inverse(); - virtual void WriteOut( - csv::AnyWrite & io_aFile ); - private: - DYN Html::Piece * dpInhalt; - udmstri sBgColor; - udmstri sColor; -}; - -Html_Inverse::Html_Inverse( DYN Html::Piece & let_drInhalt, - const udmstri i_sBgColor ) - : dpInhalt(&let_drInhalt), - sBgColor(i_sBgColor) -{ -} - -Html_Inverse::~Html_Inverse() -{ - Delete_dyn(dpInhalt); -} - - -void -Html_Inverse::WriteOut( csv::File & io_aFile ) -{ - io_aFile.WriteStr( "<TABLE WIDTH=100% BORDER=0 CELLPADDING=4 CELLSPACING=0>" - " <TR> <TD BGCOLOR=\""); - io_aFile.WriteStr( sBgColor ); - io_aFile.WriteStr( "\" VALIGN=\"MIDDLE\">\r\n"); - dpInhalt->WriteOut(io_aFile); - io_aFile.WriteStr( "\r\n</TD></TR></TABLE>\r\n" ); -} - - - - -*/ -#endif // 0 - - - - |