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/source | |
parent | 52950dd69df3630a49422604473219db2393fa71 (diff) |
get rid if unused Image
Diffstat (limited to 'udm/source')
-rw-r--r-- | udm/source/html/htmlitem.cxx | 15 |
1 files changed, 0 insertions, 15 deletions
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 { |