comparison org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/widgets/FileDialog.d @ 112:9f4c18c268b2

Update to compile and execute with dmd 2.052.
author kntroh
date Wed, 16 Mar 2011 21:53:53 +0900
parents 2e09b0e6857a
children
comparison
equal deleted inserted replaced
111:b6e9904989ed 112:9f4c18c268b2
242 */ 242 */
243 public String open () { 243 public String open () {
244 auto hHeap = OS.GetProcessHeap (); 244 auto hHeap = OS.GetProcessHeap ();
245 245
246 /* Get the owner HWND for the dialog */ 246 /* Get the owner HWND for the dialog */
247 HWND hwndOwner; 247 HWND hwndOwner = parent.handle;
248 auto hwndParent = parent.handle; 248 auto hwndParent = parent.handle;
249 249
250 /* 250 /*
251 * Feature in Windows. There is no API to set the orientation of a 251 * Feature in Windows. There is no API to set the orientation of a
252 * file dialog. It is always inherited from the parent. The fix is 252 * file dialog. It is always inherited from the parent. The fix is