summaryrefslogtreecommitdiff
path: root/noncore/apps
Unidiff
Diffstat (limited to 'noncore/apps') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/odict/dingwidget.cpp14
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 )
64 QString right; 64 QString right;
65 QString html_header = "<html><table>";
66 QString html_footer = "</table></html>";
67 QString html_table_left = "<tr><td width='50'>";
68 QString html_table_sep = "</td><td>";
69 QString html_table_right = "</td></tr>";
65 QRegExp reg_div( "\\" ); 70 QRegExp reg_div( "\\" );
@@ -77,3 +82,3 @@ void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom )
77 left.replace( queryword, substitute ); 82 left.replace( queryword, substitute );
78 toplist.append( "<tr><td>" + left + "</td><td>" + right + "</td></tr>" ); 83 toplist.append( html_table_left + left + html_table_sep + right + html_table_right );
79 } 84 }
@@ -82,3 +87,3 @@ void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom )
82 right.replace( reg_word, substitute ); 87 right.replace( reg_word, substitute );
83 bottomlist.append( "<tr><td>" + right + "</td><td>" + left + "</td></tr>" ); 88 bottomlist.append( html_table_left + right + html_table_sep + left + html_table_right );
84 } 89 }
@@ -87,5 +92,4 @@ void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom )
87 //thats it, the lists are rendered. Lets put them in one string 92 //thats it, the lists are rendered. Lets put them in one string
88 93 bottom = html_header + bottomlist.join( "<br>" ) + html_footer;
89 bottom = "<html><table><tbody>"+bottomlist.join( "<br>" )+"</tbody></table></html>"; 94 top = html_header + toplist.join( "<br>" ) + html_footer;
90 top = "<html><table><tbody>"+toplist.join( "<br>" )+"</tbody></table></html>";
91} 95}