comparison dwt/widgets/FontDialog.d @ 117:25f88bf5a6df

Only one file was damaged Backed out changeset 640928daee8c
author Frank Benoit <benoit@tionex.de>
date Mon, 11 Feb 2008 04:18:24 +0100
parents 640928daee8c
children 36f5cb12e1a2
comparison
equal deleted inserted replaced
115:640928daee8c 117:25f88bf5a6df
140 * <li>ERROR_WIDGET_DISPOSED - if the dialog has been disposed</li> 140 * <li>ERROR_WIDGET_DISPOSED - if the dialog has been disposed</li>
141 * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the dialog</li> 141 * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the dialog</li>
142 * </ul> 142 * </ul>
143 */ 143 */
144 public FontData open () { 144 public FontData open () {
145 if (OS.IsWinCE) DWT.error (DWT.ERROR_NOT_IMPLEMENTED); 145 static if (OS.IsWinCE) DWT.error (DWT.ERROR_NOT_IMPLEMENTED);
146 146
147 /* Get the owner HWND for the dialog */ 147 /* Get the owner HWND for the dialog */
148 HWND hwndOwner; 148 HWND hwndOwner;
149 if (parent !is null) hwndOwner = parent.handle; 149 if (parent !is null) hwndOwner = parent.handle;
150 150