[BROWSEUI] Fix mistake (IDR_EXPLORERBAND -> IDR_FILESEARCHBAND) (#7210)

JIRA issue: CORE-19705
#7163 (960a305) made a regression on DllRegisterServer.
The cause is lacking IDR_EXPLORERBAND that
CSearchBar wants.
IDR_EXPLORERBAND for CSearchBar is a mistake.
- Use IDR_FILESEARCHBAND resource instead of
  IDR_EXPLORERBAND resource for CSearchBar class.
This commit is contained in:
Katayama Hirofumi MZ
2024-08-02 08:47:46 +09:00
committed by GitHub
parent 7e8de0466d
commit b41146dd80
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -99,7 +99,6 @@
#define IDR_INTERNETTOOLBAR 136
#define IDR_GLOBALFOLDERSETTINGS 137
#define IDR_REGTREEOPTIONS 138
#define IDR_EXPLORERBAND 139
#define IDR_PROGRESSDIALOG 140
#define IDR_AUTOCOMPLETE 141
#define IDR_ACLISTISF 142
+1 -1
View File
@@ -80,7 +80,7 @@ public:
enum { IDD = IDD_SEARCH_DLG };
DECLARE_REGISTRY_RESOURCEID(IDR_EXPLORERBAND)
DECLARE_REGISTRY_RESOURCEID(IDR_FILESEARCHBAND)
DECLARE_NOT_AGGREGATABLE(CSearchBar)
DECLARE_PROTECT_FINAL_CONSTRUCT()