diff options
author | Oliver Bolte <obo@openoffice.org> | 2006-10-12 10:17:30 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2006-10-12 10:17:30 +0000 |
commit | 3e59c151eb23553fe33a4225cbbb84fba01f44a3 (patch) | |
tree | ea1a34e24d5e5b4289d24d712ec7cba193b98f1e /automation/source | |
parent | 373d4dcc19beb2fa18fadd08a74257cb9d3ae670 (diff) |
INTEGRATION: CWS sb59 (1.13.14); FILE MERGED
2006/08/16 14:46:06 sb 1.13.14.1: #i67487# Made code warning-free (wntmsci10).
Diffstat (limited to 'automation/source')
-rw-r--r-- | automation/source/server/server.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/automation/source/server/server.cxx b/automation/source/server/server.cxx index 48cfb2659ded..1ad495093270 100644 --- a/automation/source/server/server.cxx +++ b/automation/source/server/server.cxx @@ -4,9 +4,9 @@ * * $RCSfile: server.cxx,v $ * - * $Revision: 1.14 $ + * $Revision: 1.15 $ * - * last change: $Author: obo $ $Date: 2006-09-17 00:36:41 $ + * last change: $Author: obo $ $Date: 2006-10-12 11:17:30 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -647,7 +647,7 @@ IMPL_LINK( ImplRemoteControl, IdleHdl, Application*, EMPTYARG ) -IMPL_LINK( ImplRemoteControl, CommandHdl, Application*, pApp ) +IMPL_LINK( ImplRemoteControl, CommandHdl, Application*, EMPTYARG ) { #if OSL_DEBUG_LEVEL > 1 m_pDbgWin->AddText( "Entering CommandHdl\n" ); @@ -733,9 +733,9 @@ IMPL_LINK( ImplRemoteControl, CommandHdl, Application*, pApp ) } catch ( ... ) { - pApp->Quit(); + Application::Quit(); } - pApp->Quit(); + Application::Quit(); } } |