diff options
author | Nikolai Pretzell <np@openoffice.org> | 2002-11-01 11:25:31 +0000 |
---|---|---|
committer | Nikolai Pretzell <np@openoffice.org> | 2002-11-01 11:25:31 +0000 |
commit | 7a9d96862db4571421d6eadb314da3c0c67ece2b (patch) | |
tree | 7a5966983896f4ec0f41ffb98508ee426e199b35 /udm | |
parent | 0fc2847738442a837b39a784e0bf5467b4885a60 (diff) |
#103134# Allow cross references in IDL docu.
Diffstat (limited to 'udm')
-rw-r--r-- | udm/inc/udm/html/htmlitem.hxx | 13 | ||||
-rw-r--r-- | udm/source/html/htmlitem.cxx | 15 |
2 files changed, 18 insertions, 10 deletions
diff --git a/udm/inc/udm/html/htmlitem.hxx b/udm/inc/udm/html/htmlitem.hxx index 0de8edbc2473..667c1019f5ef 100644 --- a/udm/inc/udm/html/htmlitem.hxx +++ b/udm/inc/udm/html/htmlitem.hxx @@ -2,9 +2,9 @@ * * $RCSfile: htmlitem.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: np $ $Date: 2002-06-25 15:15:59 $ + * last change: $Author: np $ $Date: 2002-11-01 12:25:29 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -318,6 +318,7 @@ class DefList : public csi::xml::AnElement DYN csi::xml::Item* let_dpItem = 0 ); private: virtual bool LineBreakAfterBeginTag() const; + virtual bool FinishEmptyTag_XmlStyle() const; }; @@ -407,6 +408,14 @@ class AlignAttr : public csi::xml::AnAttribute : csi::xml::AnAttribute( String("align"), i_sValue ) {} }; +class VAlignAttr : public csi::xml::AnAttribute +{ + public: + VAlignAttr( + const ::csv::String & i_sValue ) + : csi::xml::AnAttribute( String("valign"), i_sValue ) {} +}; + class WidthAttr : public csi::xml::AnAttribute { public: diff --git a/udm/source/html/htmlitem.cxx b/udm/source/html/htmlitem.cxx index 3dc0fcf08191..101d4e89f1df 100644 --- a/udm/source/html/htmlitem.cxx +++ b/udm/source/html/htmlitem.cxx @@ -2,9 +2,9 @@ * * $RCSfile: htmlitem.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: np $ $Date: 2002-06-25 15:16:00 $ + * last change: $Author: np $ $Date: 2002-11-01 12:25:31 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -237,7 +237,11 @@ DefList::LineBreakAfterBeginTag() const return true; } - +bool +DefList::FinishEmptyTag_XmlStyle() const +{ + return false; +} bool ListItem::LineBreakAfterEndTag() const @@ -277,8 +281,3 @@ SimpleList::LineBreakAfterBeginTag() const } // namespace html } // namespace csi - - - - - |