https://git.reactos.org/?p=reactos.git;a=commitdiff;h=32a9b640515d0684488935ad67b4fb61d567ad74

commit 32a9b640515d0684488935ad67b4fb61d567ad74
Author:     Katayama Hirofumi MZ <[email protected]>
AuthorDate: Thu Mar 11 16:42:29 2021 +0900
Commit:     Katayama Hirofumi MZ <[email protected]>
CommitDate: Thu Mar 11 16:42:36 2021 +0900

    [BROWSEUI] Fix addreseditbox.h assertion
    
    CORE-17505
---
 dll/win32/browseui/addresseditbox.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dll/win32/browseui/addresseditbox.cpp 
b/dll/win32/browseui/addresseditbox.cpp
index 69e6f25d50c..f1e9131d607 100644
--- a/dll/win32/browseui/addresseditbox.cpp
+++ b/dll/win32/browseui/addresseditbox.cpp
@@ -31,8 +31,8 @@ TODO:
 */
 
 CAddressEditBox::CAddressEditBox() :
-    fCombobox(NULL, this, 1),
-    fEditWindow(NULL, this, 1),
+    fCombobox(WC_COMBOBOXEXW, this),
+    fEditWindow(WC_EDITW, this),
     fSite(NULL),
     pidlLastParsed(NULL)
 {

Reply via email to