diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-11-01 16:04:49 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-11-01 16:04:49 +0000 |
commit | 1be75964cca29aef18964802cc4856ec59a3a63b (patch) | |
tree | d92e8a791f4c2c4245d288f1c771f119e633e456 /desktop/source | |
parent | 1938161336711a32fde89f7cf49658849054a0a2 (diff) |
#92924#: gcc-3.0.1 needs lvalue
Diffstat (limited to 'desktop/source')
-rw-r--r-- | desktop/source/app/app.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx index 30e6c7399da2..984182313617 100644 --- a/desktop/source/app/app.cxx +++ b/desktop/source/app/app.cxx @@ -2,9 +2,9 @@ * * $RCSfile: app.cxx,v $ * - * $Revision: 1.56 $ + * $Revision: 1.57 $ * - * last change: $Author: fs $ $Date: 2001-10-22 09:45:20 $ + * last change: $Author: hr $ $Date: 2001-11-01 17:04:49 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -519,7 +519,8 @@ void Desktop::Init() void Desktop::DeInit() { - destroyApplicationServiceManager( ::comphelper::getProcessServiceFactory() ); + Reference<XMultiServiceFactory> xXMultiServiceFactory(::comphelper::getProcessServiceFactory()); + destroyApplicationServiceManager( xXMultiServiceFactory ); if( !Application::IsRemoteServer() ) { |