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 | 280c4e8a866d7dfda65e494a2eb176b2ca6ca9e9 (patch) | |
tree | 14b3752ae87c2589e28c78ca67dc28e8ca594c2b | |
parent | 5c34dedc27c8092e2aa6e623e45d0814de952bb8 (diff) |
get rid if unused Image
-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 d7ad2d74..f54d227a 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 6d4a6c2c..3580d549 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 { |