James Hawkins : msi: Add the ES_AUTOHSCROLL style to the edit control.

Alexandre Julliard julliard at wine.codeweavers.com
Mon May 7 09:10:27 CDT 2007


Module: wine
Branch: master
Commit: 7fe3ba934cb0f4908d20a9136b36f206c1b78fa6
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=7fe3ba934cb0f4908d20a9136b36f206c1b78fa6

Author: James Hawkins <truiken at gmail.com>
Date:   Sun May  6 20:29:30 2007 -0500

msi: Add the ES_AUTOHSCROLL style to the edit control.

---

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

diff --git a/dlls/msi/dialog.c b/dlls/msi/dialog.c
index 5440e67..72da99f 100644
--- a/dlls/msi/dialog.c
+++ b/dlls/msi/dialog.c
@@ -1146,7 +1146,7 @@ static UINT msi_dialog_edit_control( msi_dialog *dialog, MSIRECORD *rec )
     LPWSTR val;
 
     control = msi_dialog_add_control( dialog, rec, szEdit,
-                                      WS_BORDER | WS_TABSTOP );
+                                      WS_BORDER | WS_TABSTOP | ES_AUTOHSCROLL );
     control->handler = msi_dialog_edit_handler;
     prop = MSI_RecordGetString( rec, 9 );
     if( prop )




More information about the wine-cvs mailing list