diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-06-16 23:39:49 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-06-17 14:05:13 +0100 |
commit | 3e311ca2f54300eb6049e525012f64d84973a2c1 (patch) | |
tree | ef0b879cf257f28357a4d000b30f03b4688bf7d8 /udm | |
parent | 52950dd69df3630a49422604473219db2393fa71 (diff) |
get rid if unused Image
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, 0 insertions, 28 deletions
diff --git a/udm/inc/udm/html/htmlitem.hxx b/udm/inc/udm/html/htmlitem.hxx index e2335a2d2ee8..ac5df62f0085 100644 --- a/udm/inc/udm/html/htmlitem.hxx +++ b/udm/inc/udm/html/htmlitem.hxx @@ -61,19 +61,6 @@ class HorizontalLine : public xml::XmlCode : xml::XmlCode("<hr>\n") {} }; -/** <IMG .... > -*/ -class Image : public csi::xml::AnEmptyElement -{ - public: - Image( - const ::csv::String & i_sSrc, - const ::csv::String & i_sWidth, - const ::csv::String & i_sHeight, - const ::csv::String & i_sAlign, - const ::csv::String & i_sBorder ); -}; - /** <A name=""> */ class Label : public csi::xml::AnElement diff --git a/udm/source/html/htmlitem.cxx b/udm/source/html/htmlitem.cxx index 278ac63a6b24..8960d699bd60 100644 --- a/udm/source/html/htmlitem.cxx +++ b/udm/source/html/htmlitem.cxx @@ -58,21 +58,6 @@ Body::LineBreakAfterBeginTag() const return true; } - -Image::Image( const String & i_sSrc, - const String & i_sWidth, - const String & i_sHeight, - const String & i_sAlign, - const String & i_sBorder ) - : AnEmptyElement( "img" ) -{ - *this << new AnAttribute(String("src"),i_sSrc) - << new AnAttribute(String("width"),i_sWidth) - << new AnAttribute(String("height"),i_sHeight) - << new AnAttribute(String("align"),i_sAlign) - << new AnAttribute(String("border"),i_sBorder); -} - bool Paragraph::LineBreakAfterEndTag() const { |