Author: janderwald
Date: Mon Nov 3 12:42:56 2008
New Revision: 37173
URL:
http://svn.reactos.org/svn/reactos?rev=37173&view=rev
Log:
- Dont display NCRP_QUERY_PROPERTY_UI when the notification object has already been
created
Modified:
trunk/reactos/dll/win32/netcfgx/inetcfgcomp_iface.c
Modified: trunk/reactos/dll/win32/netcfgx/inetcfgcomp_iface.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/netcfgx/inetcfgc…
==============================================================================
--- trunk/reactos/dll/win32/netcfgx/inetcfgcomp_iface.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/netcfgx/inetcfgcomp_iface.c [iso-8859-1] Mon Nov 3 12:42:56
2008
@@ -442,9 +442,10 @@
hr = CreateNotificationObject(This,iface, pUnk);
if (FAILED(hr))
return hr;
- if (dwFlags == NCRP_QUERY_PROPERTY_UI)
- return S_OK;
- }
+ }
+
+ if (dwFlags == NCRP_QUERY_PROPERTY_UI)
+ return S_OK;
dwDefPages = 0;
Pages = 0;