diff options
author | George Hazan <george.hazan@gmail.com> | 2014-07-01 17:25:45 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-07-01 17:25:45 +0000 |
commit | 2e6fe8546849ae260194e3a2d437c6d4cda7de6c (patch) | |
tree | 085d79a0cff188c7b81fb530919f16e609734bf6 /src | |
parent | f6afb469ae277b39004c4cc8646eb1c7ad92c991 (diff) |
fix for Subcontacts menu items sort order
git-svn-id: http://svn.miranda-ng.org/main/trunk@9637 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/metacontacts/meta_menu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/metacontacts/meta_menu.cpp b/src/modules/metacontacts/meta_menu.cpp index 4d2e5982d8..602e7cae8b 100644 --- a/src/modules/metacontacts/meta_menu.cpp +++ b/src/modules/metacontacts/meta_menu.cpp @@ -412,7 +412,7 @@ void InitMenus() char buffer[512];
mir_snprintf(buffer, SIZEOF(buffer), "MetaContacts/MenuFunc%d", i);
mi.pszService = buffer;
-
+ mi.position++;
hMenuContact[i] = Menu_AddContactMenuItem(&mi);
}
|