author | tille <tille> | 2003-01-03 23:20:17 (UTC) |
---|---|---|
committer | tille <tille> | 2003-01-03 23:20:17 (UTC) |
commit | 28b06247aaa55f80d91be1f8591e2cc30bac29d3 (patch) (side-by-side diff) | |
tree | aae7c199e4149478489dbd6d2812dd1ba1d0ee94 | |
parent | f1140315017f49805c4dafa495791e0810effb91 (diff) | |
download | opie-28b06247aaa55f80d91be1f8591e2cc30bac29d3.zip opie-28b06247aaa55f80d91be1f8591e2cc30bac29d3.tar.gz opie-28b06247aaa55f80d91be1f8591e2cc30bac29d3.tar.bz2 |
clean up
-rw-r--r-- | noncore/apps/odict/dingwidget.cpp | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/noncore/apps/odict/dingwidget.cpp b/noncore/apps/odict/dingwidget.cpp index 8ad0b16..8f5a7ae 100644 --- a/noncore/apps/odict/dingwidget.cpp +++ b/noncore/apps/odict/dingwidget.cpp @@ -64,2 +64,7 @@ void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom ) QString right; + QString html_header = "<html><table>"; + QString html_footer = "</table></html>"; + QString html_table_left = "<tr><td width='50'>"; + QString html_table_sep = "</td><td>"; + QString html_table_right = "</td></tr>"; QRegExp reg_div( "\\" ); @@ -77,3 +82,3 @@ void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom ) left.replace( queryword, substitute ); - toplist.append( "<tr><td>" + left + "</td><td>" + right + "</td></tr>" ); + toplist.append( html_table_left + left + html_table_sep + right + html_table_right ); } @@ -82,3 +87,3 @@ void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom ) right.replace( reg_word, substitute ); - bottomlist.append( "<tr><td>" + right + "</td><td>" + left + "</td></tr>" ); + bottomlist.append( html_table_left + right + html_table_sep + left + html_table_right ); } @@ -87,5 +92,4 @@ void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom ) //thats it, the lists are rendered. Lets put them in one string - - bottom = "<html><table><tbody>"+bottomlist.join( "<br>" )+"</tbody></table></html>"; - top = "<html><table><tbody>"+toplist.join( "<br>" )+"</tbody></table></html>"; + bottom = html_header + bottomlist.join( "<br>" ) + html_footer; + top = html_header + toplist.join( "<br>" ) + html_footer; } |