mirror of
https://github.com/reactos/reactos.git
synced 2025-06-07 02:10:36 +00:00
[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:
parent
7e8de0466d
commit
b41146dd80
2 changed files with 1 additions and 2 deletions
|
@ -99,7 +99,6 @@
|
||||||
#define IDR_INTERNETTOOLBAR 136
|
#define IDR_INTERNETTOOLBAR 136
|
||||||
#define IDR_GLOBALFOLDERSETTINGS 137
|
#define IDR_GLOBALFOLDERSETTINGS 137
|
||||||
#define IDR_REGTREEOPTIONS 138
|
#define IDR_REGTREEOPTIONS 138
|
||||||
#define IDR_EXPLORERBAND 139
|
|
||||||
#define IDR_PROGRESSDIALOG 140
|
#define IDR_PROGRESSDIALOG 140
|
||||||
#define IDR_AUTOCOMPLETE 141
|
#define IDR_AUTOCOMPLETE 141
|
||||||
#define IDR_ACLISTISF 142
|
#define IDR_ACLISTISF 142
|
||||||
|
|
|
@ -80,7 +80,7 @@ public:
|
||||||
|
|
||||||
enum { IDD = IDD_SEARCH_DLG };
|
enum { IDD = IDD_SEARCH_DLG };
|
||||||
|
|
||||||
DECLARE_REGISTRY_RESOURCEID(IDR_EXPLORERBAND)
|
DECLARE_REGISTRY_RESOURCEID(IDR_FILESEARCHBAND)
|
||||||
DECLARE_NOT_AGGREGATABLE(CSearchBar)
|
DECLARE_NOT_AGGREGATABLE(CSearchBar)
|
||||||
|
|
||||||
DECLARE_PROTECT_FINAL_CONSTRUCT()
|
DECLARE_PROTECT_FINAL_CONSTRUCT()
|
||||||
|
|
Loading…
Reference in a new issue