summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-01-21 16:10:51 +0000
committerKurt Zenker <kz@openoffice.org>2005-01-21 16:10:51 +0000
commitc56aba4b2ee82b75e4c27ef85b7ddadd7a983aff (patch)
treee0b473af480d3648a08f03d13601d39eeaf1515f /desktop
parent223ebed808d7baba7c1c02bb18605aafb196fa1b (diff)
INTEGRATION: CWS impress23 (1.4.40); FILE MERGED
2004/12/29 14:39:35 dbo 1.4.40.1: #i38957# removed extract_throw<>(), using Any::get<>() now
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/deployment/gui/dp_gui_service.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/desktop/source/deployment/gui/dp_gui_service.cxx b/desktop/source/deployment/gui/dp_gui_service.cxx
index 177ed0878703..c1cf15a727ec 100644
--- a/desktop/source/deployment/gui/dp_gui_service.cxx
+++ b/desktop/source/deployment/gui/dp_gui_service.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: dp_gui_service.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: hr $ $Date: 2004-11-09 14:05:31 $
+ * last change: $Author: kz $ $Date: 2005-01-21 17:10:51 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -144,9 +144,9 @@ ServiceImpl::ServiceImpl(
: m_xComponentContext( xComponentContext )
{
if (args.getLength() > 0) {
- extract_throw( &m_xParent, args[ 0 ] );
+ m_xParent.set( args[ 0 ], UNO_QUERY_THROW );
if (args.getLength() > 1)
- extract_throw( &m_view, args[ 1 ] );
+ m_view = args[ 1 ].get<OUString>();
}
}