[Libreoffice-commits] core.git: Branch 'aoo/trunk' - desktop/source padmin/source

Andre Fischer af at apache.org
Tue Apr 1 07:08:11 PDT 2014


 desktop/source/app/app.cxx |    2 +-
 padmin/source/pamain.cxx   |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 19cfea5843b4d992f9117925b8c1b070417a3d4f
Author: Andre Fischer <af at apache.org>
Date:   Tue Apr 1 13:49:43 2014 +0000

    i124573: Initialize flags to allow acess bridge initialization to fail gracefully (Merged from branch AOO410).

diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx
index b8fb316..6360e96 100644
--- a/desktop/source/app/app.cxx
+++ b/desktop/source/app/app.cxx
@@ -1917,7 +1917,7 @@ void Desktop::Main()
         RTL_LOGFILE_CONTEXT_TRACE( aLog, "{ GetEnableATToolSupport" );
         if( Application::GetSettings().GetMiscSettings().GetEnableATToolSupport() )
         {
-            sal_Bool bQuitApp;
+            sal_Bool bQuitApp (sal_False);
 
             if( !InitAccessBridge( true, bQuitApp ) )
                 if( bQuitApp )
diff --git a/padmin/source/pamain.cxx b/padmin/source/pamain.cxx
index a9070c2..ca40ea5 100644
--- a/padmin/source/pamain.cxx
+++ b/padmin/source/pamain.cxx
@@ -145,7 +145,7 @@ void MyApp::Main()
 
     if( Application::GetSettings().GetMiscSettings().GetEnableATToolSupport() )
     {
-        sal_Bool bQuitApp;
+        sal_Bool bQuitApp (sal_False);
         if( !InitAccessBridge( true, bQuitApp ) )
             if( bQuitApp )
                 return;


More information about the Libreoffice-commits mailing list