mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
[0.4.11][DEVMGR] Fix wrong menu item hint (#4854) CORE-18608
Item hint for "Resources by connection" was incorrectly set to the hint for "Resources by type".
fix picked from 0.4.15-dev-5334-g 075ec50298
and also port back stripping of some EOL-whitespace
This commit is contained in:
parent
a7c1a17c28
commit
b4bf6c00ce
1 changed files with 8 additions and 10 deletions
|
@ -11,7 +11,6 @@
|
|||
#include "devmgmt.h"
|
||||
#include "MainWindow.h"
|
||||
|
||||
|
||||
/* DATA *****************************************************/
|
||||
|
||||
#define BTN_PROPERTIES 0
|
||||
|
@ -41,12 +40,11 @@ static const MENU_HINT MainMenuHintTable[] =
|
|||
{ IDC_UNINSTALL_DRV, IDS_HINT_UNINSTALL },
|
||||
{ IDC_ADD_HARDWARE, IDS_HINT_ADD },
|
||||
|
||||
|
||||
// View Menu
|
||||
{ IDC_DEVBYTYPE, IDS_HINT_DEV_BY_TYPE },
|
||||
{ IDC_DEVBYCONN, IDS_HINT_DEV_BY_CONN },
|
||||
{ IDC_RESBYTYPE, IDS_HINT_RES_BY_TYPE },
|
||||
{ IDC_RESBYCONN, IDS_HINT_RES_BY_TYPE},
|
||||
{ IDC_RESBYCONN, IDS_HINT_RES_BY_CONN },
|
||||
{ IDC_SHOWHIDDEN, IDS_HINT_SHOW_HIDDEN },
|
||||
|
||||
{ IDC_ABOUT, IDS_HINT_ABOUT }
|
||||
|
|
Loading…
Reference in a new issue