diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2003-05-26 07:29:31 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2003-05-26 07:29:31 +0000 |
commit | 26197bc03867a35b7fdccaaa5dff660ddc9adff9 (patch) | |
tree | 70636e0789dfeabcff3dd188c08a8655402b38df /sfx2 | |
parent | 8a85c037df6abe7be59941702a319cc88ae5b4df (diff) |
INTEGRATION: CWS fwk03 (1.114.32); FILE MERGED
2003/05/20 15:38:19 mba 1.114.32.2: RESYNC: (1.114-1.115); FILE MERGED
2003/05/16 09:56:38 mba 1.114.32.1: #109461#: evaluate return value of external filters
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/doc/objstor.cxx | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/sfx2/source/doc/objstor.cxx b/sfx2/source/doc/objstor.cxx index 0c5e42659716..ebdd3c5f211e 100644 --- a/sfx2/source/doc/objstor.cxx +++ b/sfx2/source/doc/objstor.cxx @@ -2,9 +2,9 @@ * * $RCSfile: objstor.cxx,v $ * - * $Revision: 1.115 $ + * $Revision: 1.116 $ * - * last change: $Author: vg $ $Date: 2003-05-15 10:53:58 $ + * last change: $Author: vg $ $Date: 2003-05-26 08:29:31 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1619,16 +1619,7 @@ sal_Bool SfxObjectShell::ImportFrom( SfxMedium& rMedium ) else aArgs.realloc ( i-1 ); - try - { - xLoader->filter( aArgs ); - } - catch (com::sun::star::uno::Exception&) - { - return sal_False; - } - - return sal_True; + return xLoader->filter( aArgs ); } return sal_False; @@ -1703,8 +1694,7 @@ sal_Bool SfxObjectShell::ExportTo( SfxMedium& rMedium ) else aArgs.realloc ( i-1 ); - xFilter->filter( aArgs ); - return sal_True; + return xFilter->filter( aArgs ); } return sal_False; |