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



commit 8523a1f25235b7196a34cbdd891c77eaa2c6ab98
Author: Ke Wang <ke wang sun com>
Date:   Mon Mar 1 13:14:04 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 682f70a..50df1d9 100644
--- a/jni/src/AtkWrapper.c
+++ b/jni/src/AtkWrapper.c
@@ -181,7 +181,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]