diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2016-01-05 21:02:10 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2016-01-05 21:02:10 +0000 |
commit | 5954ed7d4ccf489452b515717b3747327a498e2b (patch) | |
tree | c9c4e1b51fdb45268a36a3cbec7961544a8fd0b3 /plugins/HistoryStats/src/column_timeline.cpp | |
parent | 3a124ae7cbef494482be0da4ee92b1ee44178f40 (diff) |
HistoryStats:
- Minor HTML output fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@16029 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HistoryStats/src/column_timeline.cpp')
-rw-r--r-- | plugins/HistoryStats/src/column_timeline.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/HistoryStats/src/column_timeline.cpp b/plugins/HistoryStats/src/column_timeline.cpp index ad59733b61..e3b6596c06 100644 --- a/plugins/HistoryStats/src/column_timeline.cpp +++ b/plugins/HistoryStats/src/column_timeline.cpp @@ -311,7 +311,7 @@ void ColTimeline::outputRenderRowInOut(ext::ostream& tos, const Contact& contact if (getStatistic()->newFilePNG(canvas, strFinalFile))
{
- tos << _T("<img src=\"") << strFinalFile << _T("\"/>");
+ tos << _T("<img src=\"") << strFinalFile << _T("\" alt=\"\" />");
}
tos << _T("</td>") << ext::endl;
@@ -446,7 +446,7 @@ void ColTimeline::outputRenderRowRatio(ext::ostream& tos, const Contact& contact if (getStatistic()->newFilePNG(canvas, strFinalFile))
{
- tos << _T("<img src=\"") << strFinalFile << _T("\"/>");
+ tos << _T("<img src=\"") << strFinalFile << _T("\" alt=\"\" />");
}
tos << _T("</td>") << ext::endl;
|