comparison dwt/graphics/Cursor.d @ 334:c49e17d48b76

Fix problems at GC run at main()'s end.
author Frank Benoit <benoit@tionex.de>
date Wed, 18 Feb 2009 16:14:31 +0100
parents fd9c62a2998e
children
comparison
equal deleted inserted replaced
333:684eed7589a0 334:c49e17d48b76
466 * @param handle the handle for the cursor 466 * @param handle the handle for the cursor
467 * @return a new cursor object containing the specified device and handle 467 * @return a new cursor object containing the specified device and handle
468 */ 468 */
469 public static Cursor win32_new(Device device, HCURSOR handle) { 469 public static Cursor win32_new(Device device, HCURSOR handle) {
470 Cursor cursor = new Cursor(device); 470 Cursor cursor = new Cursor(device);
471 cursor.disposeChecking = false;
471 cursor.handle = handle; 472 cursor.handle = handle;
472 return cursor; 473 return cursor;
473 } 474 }
474 475
475 } 476 }