mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 11:51:58 +00:00
[RAPPS] Add /APPWIZ command-line key to open "Installed" section
Addendum to ab7ddc44
. CORE-18981
This commit is contained in:
parent
d6fecc52d1
commit
ff1fa4f38a
4 changed files with 13 additions and 5 deletions
|
@ -82,7 +82,7 @@ CSideTreeView::~CSideTreeView()
|
|||
|
||||
// **** CMainWindow ****
|
||||
|
||||
CMainWindow::CMainWindow(CAppDB *db) : m_ClientPanel(NULL), m_Db(db), SelectedEnumType(ENUM_ALL_INSTALLED)
|
||||
CMainWindow::CMainWindow(CAppDB *db, BOOL bAppwiz) : m_ClientPanel(NULL), m_Db(db), bAppwizMode(bAppwiz), SelectedEnumType(ENUM_ALL_INSTALLED)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -123,7 +123,7 @@ CMainWindow::InitCategoriesList()
|
|||
m_TreeView->SetImageList();
|
||||
m_TreeView->Expand(hRootItemInstalled, TVE_EXPAND);
|
||||
m_TreeView->Expand(hRootItemAvailable, TVE_EXPAND);
|
||||
m_TreeView->SelectItem(hRootItemAvailable);
|
||||
m_TreeView->SelectItem(bAppwizMode ? hRootItemInstalled : hRootItemAvailable);
|
||||
}
|
||||
|
||||
BOOL
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue