From 1ae75e00ae1e785aa8b89ef56afab36b3ad9d27c Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Sun, 5 Apr 2026 15:03:56 +0200 Subject: [PATCH] [NETCFGX] Replace calls to MessageBox by TRACE --- dll/win32/netcfgx/tcpipconf_notify.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dll/win32/netcfgx/tcpipconf_notify.c b/dll/win32/netcfgx/tcpipconf_notify.c index 95ac1537480..af91ad83186 100644 --- a/dll/win32/netcfgx/tcpipconf_notify.c +++ b/dll/win32/netcfgx/tcpipconf_notify.c @@ -3394,7 +3394,7 @@ INetCfgComponentPropertyUi_fnValidateProperties( INetCfgComponentPropertyUi * iface, HWND hwndDlg) { -MessageBoxW(NULL, L"INetCfgComponentPropertyUi_fnValidateProperties", NULL, MB_OK); + TRACE("INetCfgComponentPropertyUi_fnValidateProperties()\n"); return S_OK; } @@ -3403,7 +3403,7 @@ WINAPI INetCfgComponentPropertyUi_fnApplyProperties( INetCfgComponentPropertyUi * iface) { -MessageBoxW(NULL, L"INetCfgComponentPropertyUi_fnApplyProperties", NULL, MB_OK); + TRACE("INetCfgComponentPropertyUi_fnApplyProperties()\n"); return S_OK; } @@ -3412,7 +3412,7 @@ WINAPI INetCfgComponentPropertyUi_fnCancelProperties( INetCfgComponentPropertyUi * iface) { -//MessageBoxW(NULL, L"INetCfgComponentPropertyUi_fnCancelProperties", NULL, MB_OK); + TRACE("INetCfgComponentPropertyUi_fnCancelProperties()\n"); return S_OK; } @@ -3903,7 +3903,7 @@ WINAPI INetCfgComponentControl_fnCancelChanges( INetCfgComponentControl * iface) { - //MessageBoxW(NULL, L"INetCfgComponentControl_fnCancelChanges", NULL, MB_OK); + TRACE("INetCfgComponentControl_fnCancelChanges()\n"); return S_OK; }