Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Dennis Bartok <pbartok@mono-cvs.ximian.com>2004-05-24 22:24:38 +0400
committerPeter Dennis Bartok <pbartok@mono-cvs.ximian.com>2004-05-24 22:24:38 +0400
commita1c98f5519cbab040cf56ad36d40cb87f6fb5812 (patch)
tree445f3e9c17350e3fb4130019348577e3475552d5
parent2740d6eb84d4cb4c54055f32805cc0a264a8ccfc (diff)
- Added loading of common dialog dll
svn path=/trunk/mcs/; revision=27987
-rw-r--r--mcs/class/System.Windows.Forms/System.Windows.Forms/ChangeLog5
-rw-r--r--mcs/class/System.Windows.Forms/System.Windows.Forms/win32functions.cs1
2 files changed, 6 insertions, 0 deletions
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/ChangeLog b/mcs/class/System.Windows.Forms/System.Windows.Forms/ChangeLog
index cce20f6dbf0..f2b0f3933ec 100644
--- a/mcs/class/System.Windows.Forms/System.Windows.Forms/ChangeLog
+++ b/mcs/class/System.Windows.Forms/System.Windows.Forms/ChangeLog
@@ -1,3 +1,8 @@
+2004-05-24 Peter Bartok <pbartok@novell.com>
+ * win32functions.cs: Added loading of comdlg32 for wine to enable
+ usage of common dialogs
+
+
2004-05-16 Gert Driesen (drieseng@users.sourceforge.net)
* UnsafeNativeMethods.cs: added IEnumVariant interface,
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/win32functions.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/win32functions.cs
index 2aaaf3381e0..cd9220c22c3 100644
--- a/mcs/class/System.Windows.Forms/System.Windows.Forms/win32functions.cs
+++ b/mcs/class/System.Windows.Forms/System.Windows.Forms/win32functions.cs
@@ -1404,6 +1404,7 @@ namespace System.Windows.Forms{
WineLoadLibrary("comctl32.dll");
WineLoadLibrary("user32.dll");
WineLoadLibrary("advapi32.dll");
+ WineLoadLibrary("comdlg32.dll");
#if DotNetCtlEnabled
/* For Unix this must run after user32 is loaded */