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_split.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_split.cpp')
-rw-r--r-- | plugins/HistoryStats/src/column_split.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/HistoryStats/src/column_split.cpp b/plugins/HistoryStats/src/column_split.cpp index e7c834861e..e3da38ed01 100644 --- a/plugins/HistoryStats/src/column_split.cpp +++ b/plugins/HistoryStats/src/column_split.cpp @@ -389,7 +389,7 @@ void ColSplit::impl_outputRenderRow(ext::ostream& tos, const Contact& contact, D {
int bar_len = (50 * part_top + top - 1) / top;
- ExtTextOut(hDC, 0, 0, ETO_OPAQUE, &utils::rect(j * 5, 50 - bar_len, j * 5 + 4, 50), NULL, 0, NULL);
+ ExtTextOut(hDC, 0, 0, ETO_OPAQUE, utils::rect(j * 5, 50 - bar_len, j * 5 + 4, 50), NULL, 0, NULL);
}
}
|