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/inc | |
parent | 0fc2847738442a837b39a784e0bf5467b4885a60 (diff) |
#103134# Allow cross references in IDL docu.
Diffstat (limited to 'udm/inc')
-rw-r--r-- | udm/inc/udm/html/htmlitem.hxx | 13 |
1 files changed, 11 insertions, 2 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: |