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>
This commit is contained in:
Chris
2013-03-03 23:56:37 +11:00
committed by Markus Mohrhard
parent c0fc4eb5a8
commit f5dc0036ab

View File

@@ -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