mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 08:07:19 -06:00
16.03
This commit is contained in:
committed by
Kornel Lesiński
parent
1eddf527ca
commit
232ce79574
@@ -361,6 +361,7 @@ public:
|
||||
// CMyComboBox _headerComboBox;
|
||||
CMyComboBoxEdit _comboBoxEdit;
|
||||
CMyListView _listView;
|
||||
bool _thereAre_ListView_Items;
|
||||
NWindows::NControl::CStatusBar _statusBar;
|
||||
bool _lastFocusedIsList;
|
||||
// NWindows::NControl::CStatusBar _statusBar2;
|
||||
@@ -380,6 +381,18 @@ public:
|
||||
|
||||
bool PanelCreated;
|
||||
|
||||
void DeleteListItems()
|
||||
{
|
||||
if (_thereAre_ListView_Items)
|
||||
{
|
||||
bool b = _enableItemChangeNotify;
|
||||
_enableItemChangeNotify = false;
|
||||
_listView.DeleteAllItems();
|
||||
_thereAre_ListView_Items = false;
|
||||
_enableItemChangeNotify = b;
|
||||
}
|
||||
}
|
||||
|
||||
HWND GetParent();
|
||||
|
||||
UInt32 GetRealIndex(const LVITEMW &item) const
|
||||
@@ -502,6 +515,7 @@ public:
|
||||
_flatModeForDisk(false),
|
||||
_flatModeForArc(false),
|
||||
PanelCreated(false),
|
||||
_thereAre_ListView_Items(false),
|
||||
|
||||
// _showNtfsStrems_Mode(false),
|
||||
// _showNtfsStrems_ModeForDisk(false),
|
||||
|
||||
Reference in New Issue
Block a user