From 15d488a5685ba2232b85eef67e1486855bd62cbf Mon Sep 17 00:00:00 2001 From: Hennes Rohling Date: Tue, 10 Jun 2003 12:42:42 +0000 Subject: [PATCH] #110104# Don't start if gnome accessibility is enabled --- crashrep/source/unx/main.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crashrep/source/unx/main.cxx b/crashrep/source/unx/main.cxx index c32d0ccf7499..0cccc8d8c393 100755 --- a/crashrep/source/unx/main.cxx +++ b/crashrep/source/unx/main.cxx @@ -2,9 +2,9 @@ * * $RCSfile: main.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: hro $ $Date: 2003-06-10 13:40:41 $ + * last change: $Author: hro $ $Date: 2003-06-10 13:42:42 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1086,7 +1086,7 @@ int main( int argc, char** argv ) // Don't start if accessiblity is enabled or report server is not given - if ( setup_version() && !get_accessibility_state() ) + if ( !get_accessibility_state() && setup_version() ) { gtk_set_locale (); gtk_init (&argc, &argv);