diff options
author | George Hazan <ghazan@miranda.im> | 2016-11-22 22:19:29 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2016-11-22 22:19:29 +0300 |
commit | cacf6ff767105f17a131cdee000c688bd8209af7 (patch) | |
tree | 42c4361fbe2b606be091195f644fea52b9e47f4c /include | |
parent | 601562c2a08523440e58b09511cba4878880ec4d (diff) |
missing method: CCtrlListBox::SetItemHeight
Diffstat (limited to 'include')
-rw-r--r-- | include/m_gui.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/m_gui.h b/include/m_gui.h index 503f790e8e..f09e249517 100644 --- a/include/m_gui.h +++ b/include/m_gui.h @@ -792,7 +792,8 @@ public: int SelectString(wchar_t *str);
int SetCurSel(int index);
void SetItemData(int index, LPARAM data);
- void SetSel(int index, bool sel=true);
+ void SetItemHeight(int index, int iHeight);
+ void SetSel(int index, bool sel = true);
// Events
CCallback<CCtrlListBox> OnDblClick;
|