[java-atk-wrapper] Fix critical typo - should set NO_AT_BRIDGE to 0 instead of 1 in loadAtkBridge



commit 5dcad0c4faf03dd3189b1a9faa5ded6a0ad6accc
Author: Ke Wang <ke wang sun com>
Date:   Mon Mar 1 13:00:46 2010 +0800

    Fix critical typo - should set NO_AT_BRIDGE to 0 instead of 1 in loadAtkBridge

 jni/src/AtkWrapper.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/jni/src/AtkWrapper.c b/jni/src/AtkWrapper.c
index f05b1b3..382b0c0 100644
--- a/jni/src/AtkWrapper.c
+++ b/jni/src/AtkWrapper.c
@@ -191,7 +191,7 @@ JNIEXPORT void JNICALL Java_org_GNOME_Accessibility_AtkWrapper_initNativeLibrary
 
 JNIEXPORT void JNICALL Java_org_GNOME_Accessibility_AtkWrapper_loadAtkBridge(JNIEnv *jniEnv, jclass jClass) {
 	// Enable ATK Bridge so we can load it now
-	g_setenv("NO_AT_BRIDGE", "1", TRUE);
+	g_setenv("NO_AT_BRIDGE", "0", TRUE);
 
 	GMainLoop *main_loop = g_main_loop_new( NULL, FALSE );
 	



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]