diff options
author | George Hazan <george.hazan@gmail.com> | 2023-11-15 14:33:49 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-11-15 14:33:49 +0300 |
commit | d5ed49db10c48031e98e92c0a577964b0581c794 (patch) | |
tree | 299805b4940321bd25c2290523b21f460fd8e4ad /include | |
parent | 57ff99c9525a7bc381392f28f2b54e3df3c45db1 (diff) |
CCtrlListView::addItem() doesn't add strings in the reverse order anymore
Diffstat (limited to 'include')
-rw-r--r-- | include/m_gui.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/m_gui.h b/include/m_gui.h index ff6c40d43d..4386af0c79 100644 --- a/include/m_gui.h +++ b/include/m_gui.h @@ -1003,6 +1003,7 @@ public: class MIR_CORE_EXPORT CCtrlListView : public CCtrlBase
{
typedef CCtrlBase CSuper;
+ int m_iItem = 0;
public:
CCtrlListView(CDlgBase *dlg, int ctrlId);
|