summaryrefslogtreecommitdiff
path: root/crashrep/source
diff options
context:
space:
mode:
authorHennes Rohling <hro@openoffice.org>2003-06-10 12:42:42 +0000
committerHennes Rohling <hro@openoffice.org>2003-06-10 12:42:42 +0000
commit15d488a5685ba2232b85eef67e1486855bd62cbf (patch)
treee1aa49d7f078f5fdcf22703c4434e13aba176980 /crashrep/source
parent58f319d4c472c24cbf1a08bcbad2f9b3729ae7a4 (diff)
#110104# Don't start if gnome accessibility is enabled
Diffstat (limited to 'crashrep/source')
-rwxr-xr-xcrashrep/source/unx/main.cxx6
1 files 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);