diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-01-24 11:08:48 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-01-24 16:53:56 +0000 |
commit | 17ecf0036d44657b954de6c8f7efd536ab5c4809 (patch) | |
tree | 313962191e32e2ab611e3e25b8237b6ad76a329b /udm | |
parent | 45350532879f8b33741fa1ac012aa43a776ebdf5 (diff) |
callcatcher: update list, remove newly unused methods
Diffstat (limited to 'udm')
-rw-r--r-- | udm/inc/udm/html/htmlitem.hxx | 8 | ||||
-rw-r--r-- | udm/source/html/htmlitem.cxx | 29 |
2 files changed, 0 insertions, 37 deletions
diff --git a/udm/inc/udm/html/htmlitem.hxx b/udm/inc/udm/html/htmlitem.hxx index 27549d74450a..b704075be549 100644 --- a/udm/inc/udm/html/htmlitem.hxx +++ b/udm/inc/udm/html/htmlitem.hxx @@ -177,8 +177,6 @@ class TableRow : public csi::xml::AnElement TableRow() : csi::xml::AnElement("tr") {} - TableCell & AddCell( - DYN csi::xml::Item* let_dpItem = 0 ); private: virtual bool LineBreakAfterBeginTag() const; }; @@ -229,10 +227,6 @@ class DefList : public csi::xml::AnElement DefList() : csi::xml::AnElement("dl") {} - DefListTerm & AddTerm( - DYN csi::xml::Item* let_dpItem = 0 ); - DefListDefinition & AddDefinition( - DYN csi::xml::Item* let_dpItem = 0 ); private: virtual bool LineBreakAfterBeginTag() const; virtual bool FinishEmptyTag_XmlStyle() const; @@ -267,8 +261,6 @@ class SimpleList : public csi::xml::AnElement SimpleList() : csi::xml::AnElement("ul") {} - ListItem & AddItem( - DYN csi::xml::Item* let_dpItem = 0 ); private: virtual bool LineBreakAfterBeginTag() const; }; diff --git a/udm/source/html/htmlitem.cxx b/udm/source/html/htmlitem.cxx index ab8bdd781006..807a70b22bff 100644 --- a/udm/source/html/htmlitem.cxx +++ b/udm/source/html/htmlitem.cxx @@ -79,12 +79,6 @@ TableCell::LineBreakAfterEndTag() const return true; } -TableCell & -TableRow::AddCell( DYN Item * let_dpItem ) -{ - return PushElem( *this, new TableCell, let_dpItem ); -} - bool TableRow::LineBreakAfterBeginTag() const { @@ -142,22 +136,6 @@ DefListDefinition::LineBreakAfterEndTag() const return true; } - - - - -DefListTerm & -DefList::AddTerm( DYN csi::xml::Item* let_dpItem ) -{ - return PushElem( *this, new DefListTerm, let_dpItem ); -} - -DefListDefinition & -DefList::AddDefinition( DYN csi::xml::Item* let_dpItem ) -{ - return PushElem( *this, new DefListDefinition, let_dpItem ); -} - bool DefList::LineBreakAfterBeginTag() const { @@ -182,13 +160,6 @@ NumeratedList::LineBreakAfterBeginTag() const return true; } - -ListItem & -SimpleList::AddItem( DYN csi::xml::Item* let_dpItem ) -{ - return PushElem( *this, new ListItem, let_dpItem ); -} - bool SimpleList::LineBreakAfterBeginTag() const { |