diff options
author | George Hazan <george.hazan@gmail.com> | 2015-09-07 08:37:05 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-09-07 08:37:05 +0000 |
commit | b3b896c472bd802ace10eca85b8d6a7e55a36908 (patch) | |
tree | 591599fc1fcede341b53debacee329cdbf1e228c /plugins/HistoryStats/src/column_chatduration.cpp | |
parent | 1e6778f300138c934d22c19729f4e405cd7ad4b2 (diff) |
warning fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@15290 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HistoryStats/src/column_chatduration.cpp')
-rw-r--r-- | plugins/HistoryStats/src/column_chatduration.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/HistoryStats/src/column_chatduration.cpp b/plugins/HistoryStats/src/column_chatduration.cpp index 719ba2efd0..0d4b7e67fc 100644 --- a/plugins/HistoryStats/src/column_chatduration.cpp +++ b/plugins/HistoryStats/src/column_chatduration.cpp @@ -219,7 +219,7 @@ void ColChatDuration::impl_outputRenderRow(ext::ostream& tos, const Contact& con HDC hDC = canvas.beginDraw();
SetBkColor(hDC, con::ColorBar);
- ExtTextOut(hDC, 0, 0, ETO_OPAQUE, &utils::rect(0, 0, barW, 15), NULL, 0, NULL);
+ ExtTextOut(hDC, 0, 0, ETO_OPAQUE, utils::rect(0, 0, barW, 15), NULL, 0, NULL);
canvas.endDraw();
|