diff options
author | George Hazan <george.hazan@gmail.com> | 2016-01-21 11:19:18 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-01-21 11:19:18 +0000 |
commit | 385e9fc6fffe35fff080fdcb564b835a334c8feb (patch) | |
tree | 0f58ead5811a6570e53347c1a5405e098c345eb2 /include/m_gui.h | |
parent | e0a53609f587b1fd1b1daff2ae96feb8f39b62e1 (diff) |
fix for moving menu item to the first position in a submenu
git-svn-id: http://svn.miranda-ng.org/main/trunk@16132 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/m_gui.h')
-rw-r--r-- | include/m_gui.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/m_gui.h b/include/m_gui.h index 1a1317d6ab..b919207189 100644 --- a/include/m_gui.h +++ b/include/m_gui.h @@ -851,7 +851,7 @@ class MIR_CORE_EXPORT CCtrlTreeView : public CCtrlBase {
typedef CCtrlBase CSuper;
- HTREEITEM MoveItemAbove(HTREEITEM hItem, HTREEITEM hInsertAfter);
+ HTREEITEM MoveItemAbove(HTREEITEM hItem, HTREEITEM hInsertAfter, HTREEITEM hParent);
public:
CCtrlTreeView(CDlgBase *dlg, int ctrlId);
|