diff options
author | Rüdiger Timm <rt@openoffice.org> | 2003-04-17 12:15:23 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2003-04-17 12:15:23 +0000 |
commit | 41e14953bd6c93b8fb94c57e1a9fa9b06e13929d (patch) | |
tree | b8bd95aaf4ccba20ccb98235cb8fffaa71f60ce3 /configmgr | |
parent | 6ca0c61afa3dd3565a9b8921d970fea50b9b2775 (diff) |
INTEGRATION: CWS configapi01 (1.4.10); FILE MERGED
2003/04/11 13:42:05 jb 1.4.10.2: #1077715# Repair broken exception specifications
2003/04/10 15:47:05 jb 1.4.10.1: #1077715# Move configuration backend API out of drafts; adjust to API changes
Diffstat (limited to 'configmgr')
-rw-r--r-- | configmgr/source/backend/importsvc.cxx | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/configmgr/source/backend/importsvc.cxx b/configmgr/source/backend/importsvc.cxx index 2f9df44eef50..866d1d48419f 100644 --- a/configmgr/source/backend/importsvc.cxx +++ b/configmgr/source/backend/importsvc.cxx @@ -2,9 +2,9 @@ * * $RCSfile: importsvc.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: hr $ $Date: 2003-03-19 16:18:47 $ + * last change: $Author: rt $ $Date: 2003-04-17 13:15:23 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -86,7 +86,8 @@ namespace configmgr // ----------------------------------------------------------------------------- namespace uno = ::com::sun::star::uno; namespace lang = ::com::sun::star::lang; - namespace backenduno = drafts::com::sun::star::configuration::backend; + namespace beans = ::com::sun::star::beans; + namespace backenduno = ::com::sun::star::configuration::backend; // ----------------------------------------------------------------------------- // ----------------------------------------------------------------------------- @@ -257,7 +258,7 @@ void SAL_CALL // ----------------------------------------------------------------------------- -// XImportLayer +// XLayerImporter uno::Reference< backenduno::XBackend > SAL_CALL ImportService::getTargetBackend( ) @@ -298,7 +299,8 @@ void SAL_CALL void SAL_CALL ImportService::importLayer( const uno::Reference< backenduno::XLayer >& aLayer ) - throw ( lang::WrappedTargetException, lang::IllegalArgumentException, + throw ( MalformedDataException, + lang::WrappedTargetException, lang::IllegalArgumentException, lang::NullPointerException, uno::RuntimeException) { if (!aLayer.is()) @@ -315,7 +317,8 @@ void SAL_CALL void SAL_CALL ImportService::importLayerForEntity( const uno::Reference< backenduno::XLayer >& aLayer, const OUString& aEntity ) - throw ( lang::WrappedTargetException, lang::IllegalArgumentException, + throw ( MalformedDataException, + lang::WrappedTargetException, lang::IllegalArgumentException, lang::NullPointerException, uno::RuntimeException) { if (!aLayer.is()) |