https://git.reactos.org/?p=reactos.git;a=commitdiff;h=075ec50298e80df79ff654a08ee7ae0f4e055084

commit 075ec50298e80df79ff654a08ee7ae0f4e055084
Author:     Tuur Martens <[email protected]>
AuthorDate: Sun Nov 6 18:00:18 2022 +0100
Commit:     GitHub <[email protected]>
CommitDate: Sun Nov 6 20:00:18 2022 +0300

    [DEVMGR] Fix wrong menu item hint (#4854)
    
    Item hint for "Resources by connection" was incorrectly set to the hint for 
"Resources by type".
    
    CORE-18608
---
 dll/win32/devmgr/devmgmt/MainWindow.cpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/dll/win32/devmgr/devmgmt/MainWindow.cpp 
b/dll/win32/devmgr/devmgmt/MainWindow.cpp
index a29db2d7576..0bf96dc3c9e 100644
--- a/dll/win32/devmgr/devmgmt/MainWindow.cpp
+++ b/dll/win32/devmgr/devmgmt/MainWindow.cpp
@@ -41,10 +41,10 @@ static const MENU_HINT MainMenuHintTable[] =
     { IDM_ADD_HARDWARE, IDS_HINT_ADD },
 
     // View Menu
-    { IDM_DEVBYTYPE, IDS_HINT_DEV_BY_TYPE},
-    { IDM_DEVBYCONN, IDS_HINT_DEV_BY_CONN},
-    { IDM_RESBYTYPE, IDS_HINT_RES_BY_TYPE},
-    { IDM_RESBYCONN, IDS_HINT_RES_BY_TYPE},
+    { IDM_DEVBYTYPE, IDS_HINT_DEV_BY_TYPE },
+    { IDM_DEVBYCONN, IDS_HINT_DEV_BY_CONN },
+    { IDM_RESBYTYPE, IDS_HINT_RES_BY_TYPE },
+    { IDM_RESBYCONN, IDS_HINT_RES_BY_CONN },
     { IDM_SHOWHIDDEN, IDS_HINT_SHOW_HIDDEN },
 
     { IDM_ABOUT, IDS_HINT_ABOUT }

Reply via email to