diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-10 12:33:30 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-10 12:33:30 +0000 |
commit | a993efb0503615efb7a3bcdce1ce91575448e789 (patch) | |
tree | 9a48d68b77bb01a61cf28e5e8c546f142ab0e49a /plugins/Clist_modern | |
parent | 679f5352ac3ff2b3f098a502042d3359d2240415 (diff) |
- tooltips for TopToolbar buttons
- replaceStr/replaceStrW moved to mir_core
git-svn-id: http://svn.miranda-ng.org/main/trunk@886 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern')
-rw-r--r-- | plugins/Clist_modern/modern_newrowopts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Clist_modern/modern_newrowopts.cpp b/plugins/Clist_modern/modern_newrowopts.cpp index fabbbf6adb..b44ea0dbe3 100644 --- a/plugins/Clist_modern/modern_newrowopts.cpp +++ b/plugins/Clist_modern/modern_newrowopts.cpp @@ -74,7 +74,7 @@ BOOL RemoveChildNode(NodeList * FromList, DWORD index) NodeList *work = &(FromList->childNodes[index]);
for (size_t i=0; i < work->AllocatedChilds; i++)
if (work->childNodes[i].AllocatedChilds)
- RemoveChildNode(work->childNodes,i);
+ RemoveChildNode(work->childNodes, (DWORD)i);
if (work->AllocatedChilds) {
mir_free_and_nil(work->childNodes);
|