*** empty log message ***
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Program/motif/org/eclipse/swt/program/Program.java b/bundles/org.eclipse.swt/Eclipse SWT Program/motif/org/eclipse/swt/program/Program.java
index 4aeb4c4..0dec379 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT Program/motif/org/eclipse/swt/program/Program.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Program/motif/org/eclipse/swt/program/Program.java
@@ -526,6 +526,9 @@
 }
 
 static boolean kde_init () {
+	// TEMPORARY CODE
+	if (true) return false;
+	
 	try {
 		Library.loadLibrary("swt-kde");
 	} catch (Throwable e) {
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Cursor.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Cursor.java
index ee0fa71..dc22b6c 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Cursor.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Cursor.java
@@ -274,7 +274,11 @@
 	* LoadCursor() does not leak.

 	*/

 	if (OS.GetCursor() == handle) {

-		OS.SetCursor(OS.LoadCursor(0, OS.IDC_ARROW));

+		// This code intentionally commented out.

+		// Disposing of a system cursor that is the 

+		// cursor currently being displayed will cause the

+		// arrow cursor to be displayed.

+//		OS.SetCursor(OS.LoadCursor(0, OS.IDC_ARROW));

 	}

 	

 	/*