Author: hbelusca Date: Wed May 18 21:49:31 2016 New Revision: 71353
URL: http://svn.reactos.org/svn/reactos?rev=71353&view=rev Log: [NETSHELL] Addendum to r71348: Fix MSVC build: "netshell\lang/de-DE.rc(87) : warning RC2182 : duplicate dialog control ID 3501" . Both IDC_NETWORK_TYPICAL and IDC_NETWORK_CUSTOM setup wizard pages had this same ID. Obviously, GCC didn't catch this error. But the generated code would not have worked as expected.
CORE-10955 #comment [~milawynsrealm], please retest with r71353.
Modified: trunk/reactos/dll/shellext/netshell/resource.h
Modified: trunk/reactos/dll/shellext/netshell/resource.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/netshell/resou... ============================================================================== --- trunk/reactos/dll/shellext/netshell/resource.h [iso-8859-1] (original) +++ trunk/reactos/dll/shellext/netshell/resource.h [iso-8859-1] Wed May 18 21:49:31 2016 @@ -54,7 +54,7 @@ /* Network setup wizard pages */ #define IDD_NETWORKSETTINGSPAGE 3500 #define IDC_NETWORK_TYPICAL 3501 -#define IDC_NETWORK_CUSTOM 3501 +#define IDC_NETWORK_CUSTOM 3502
#define IDD_NETWORKCOMPONENTPAGE 3600 #define IDC_COMPONENT_LIST 3601