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

Chris chris.sherlock79 at gmail.com
Sun Mar 3 06:05:58 PST 2013


 vcl/source/app/svapp.cxx |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit f5dc0036abda6fbacab7f05cc9a0faba7a19613c
Author: Chris <chris.sherlock79 at gmail.com>
Date:   Sun Mar 3 23:56:37 2013 +1100

    Translated German comment, other comments updated for clarity
    
    Change-Id: I6db4f5dd66b928c9424cefebec3016e5bf5e8c49
    Reviewed-on: https://gerrit.libreoffice.org/2525
    Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>
    Tested-by: Markus Mohrhard <markus.mohrhard at googlemail.com>

diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx
index 6db1ec6..3758a85 100644
--- a/vcl/source/app/svapp.cxx
+++ b/vcl/source/app/svapp.cxx
@@ -237,7 +237,7 @@ sal_Bool Application::QueryExit()
 {
     WorkWindow* pAppWin = ImplGetSVData()->maWinData.mpAppWin;
 
-    // Aufruf des Close-Handlers des Applikationsfensters
+    // call the close handler of the application window
     if ( pAppWin )
         return pAppWin->Close();
     else
@@ -1082,7 +1082,7 @@ sal_Bool Application::InsertIdleHdl( const Link& rLink, sal_uInt16 nPrio )
 {
     ImplSVData* pSVData = ImplGetSVData();
 
-    // create if not existing
+    // create if does not exist
     if ( !pSVData->maAppData.mpIdleMgr )
         pSVData->maAppData.mpIdleMgr = new ImplIdleMgr;
 
@@ -1219,7 +1219,7 @@ void Application::SetAppName( const XubString& rUniqueName )
 {
     ImplSVData* pSVData = ImplGetSVData();
 
-    // create if not existing
+    // create if does not exist
     if ( !pSVData->maAppData.mpAppName )
         pSVData->maAppData.mpAppName = new XubString( rUniqueName );
     else
@@ -1243,7 +1243,7 @@ void Application::SetDisplayName( const OUString& rName )
 {
     ImplSVData* pSVData = ImplGetSVData();
 
-    // create if not existing
+    // create if does not exist
     if ( !pSVData->maAppData.mpDisplayName )
         pSVData->maAppData.mpDisplayName = new OUString( rName );
     else


More information about the Libreoffice-commits mailing list