diff options
author | Chris <chris.sherlock79@gmail.com> | 2013-03-03 23:56:37 +1100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-03-03 14:05:38 +0000 |
commit | f5dc0036abda6fbacab7f05cc9a0faba7a19613c (patch) | |
tree | c422b5dab132f4da09ab5a6825008f79f82e54e1 /vcl | |
parent | c0fc4eb5a8bd1e79291a43579ec0f4482730b9e8 (diff) |
Translated German comment, other comments updated for clarity
Change-Id: I6db4f5dd66b928c9424cefebec3016e5bf5e8c49
Reviewed-on: https://gerrit.libreoffice.org/2525
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/app/svapp.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx index 6db1ec65a143..3758a85e6690 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 |