msi [4/12]: Empty the window text if no text is provided

James Hawkins truiken at gmail.com
Tue Oct 3 17:00:19 CDT 2006


Hi,

Changelog:
* Empty the window text if no text is provided.

 dlls/msi/dialog.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

-- 
James Hawkins
-------------- next part --------------
diff --git a/dlls/msi/dialog.c b/dlls/msi/dialog.c
index b4e9ce3..f0c9d7c 100644
--- a/dlls/msi/dialog.c
+++ b/dlls/msi/dialog.c
@@ -536,6 +536,8 @@ void msi_dialog_handle_event( msi_dialog
     LPCWSTR font_text, text = NULL;
     LPWSTR font;
 
+    static const WCHAR empty[] = {0};
+
     ctrl = msi_dialog_find_control( dialog, control );
     if (!ctrl)
         return;
@@ -543,6 +545,7 @@ void msi_dialog_handle_event( msi_dialog
     {
         font_text = MSI_RecordGetString( rec , 1 );
         font = msi_dialog_get_style( font_text, &text );
+        if (!text) text = empty;
         SetWindowTextW( ctrl->hwnd, text );
         msi_free( font );
         msi_dialog_check_messages( NULL );
-- 
1.4.2.1


More information about the wine-patches mailing list