Module: wine Branch: master Commit: 12c33ab8aa0d314c21afbfc850f94201faa58cf9 URL: http://source.winehq.org/git/wine.git/?a=commit;h=12c33ab8aa0d314c21afbfc850...
Author: James Hawkins truiken@gmail.com Date: Sun May 6 20:31:42 2007 -0500
msi: Remove incorrect ERR as messages can be sent before the control is created.
---
dlls/msi/dialog.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/dlls/msi/dialog.c b/dlls/msi/dialog.c index 3a256d8..614b4aa 100644 --- a/dlls/msi/dialog.c +++ b/dlls/msi/dialog.c @@ -3185,8 +3185,7 @@ static LRESULT msi_dialog_oncommand( msi_dialog *dialog, WPARAM param, HWND hwnd msi_dialog_evaluate_control_conditions( dialog ); } } - else - ERR("button click from nowhere %p %d %p\n", dialog, param, hwnd); + return 0; }