[Libreoffice-commits] core.git: desktop/source

Tor Lillqvist tml at iki.fi
Wed Feb 20 06:43:43 PST 2013


 desktop/source/app/app.cxx |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 2d907dcca7edde8cd02446cf7322556095ba447f
Author: Tor Lillqvist <tml at iki.fi>
Date:   Wed Feb 20 15:26:00 2013 +0200

    s/FaultBack/Fallback/
    
    Change-Id: I9ecf4f57770151c1e4976c57d1f93982f35ac0fb

diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx
index bc75d8d..1dc7552 100644
--- a/desktop/source/app/app.cxx
+++ b/desktop/source/app/app.cxx
@@ -357,27 +357,27 @@ namespace {
 // is not available.
 
 OUString GetMsgString(
-    sal_uInt16 nId, const OUString& aFaultBackMsg,
-    bool bAlwaysUseFaultBackMsg = false )
+    sal_uInt16 nId, const OUString& aFallbackMsg,
+    bool bAlwaysUseFallbackMsg = false )
 {
-    if ( !bAlwaysUseFaultBackMsg )
+    if ( !bAlwaysUseFallbackMsg )
     {
         ResMgr* resMgr = Desktop::GetDesktopResManager();
         if ( resMgr )
             return OUString( String( ResId( nId, *resMgr )));
     }
-    return aFaultBackMsg;
+    return aFallbackMsg;
 }
 
 OUString MakeStartupErrorMessage(
-    OUString const & aErrorMessage, bool bAlwaysUseFaultBackMsg = false )
+    OUString const & aErrorMessage, bool bAlwaysUseFallbackMsg = false )
 {
     OUStringBuffer    aDiagnosticMessage( 100 );
 
     aDiagnosticMessage.append(
         GetMsgString(
             STR_BOOTSTRAP_ERR_CANNOT_START, "The program cannot be started.",
-            bAlwaysUseFaultBackMsg ) );
+            bAlwaysUseFallbackMsg ) );
 
     aDiagnosticMessage.appendAscii( "\n" );
 


More information about the Libreoffice-commits mailing list