diff options
author | Carsten Driesner <cd@openoffice.org> | 2002-08-29 12:43:59 +0000 |
---|---|---|
committer | Carsten Driesner <cd@openoffice.org> | 2002-08-29 12:43:59 +0000 |
commit | 25d074241f90d847d8241d71b731b6851bea11c0 (patch) | |
tree | da1bb493e74f83b7409993d3cafb31ef07622916 /sfx2 | |
parent | 20a1fbd7a54c8e9ed1c348f8d0dfa337d056cdcf (diff) |
#102385# Don't unpack value of filter data
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/appuno.cxx | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/sfx2/source/appl/appuno.cxx b/sfx2/source/appl/appuno.cxx index bf79919aee67..3d498bf9ee9f 100644 --- a/sfx2/source/appl/appuno.cxx +++ b/sfx2/source/appl/appuno.cxx @@ -2,9 +2,9 @@ * * $RCSfile: appuno.cxx,v $ * - * $Revision: 1.71 $ + * $Revision: 1.72 $ * - * last change: $Author: as $ $Date: 2002-08-26 13:14:43 $ + * last change: $Author: cd $ $Date: 2002-08-29 13:43:59 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -546,13 +546,7 @@ void TransformParameters( sal_uInt16 nSlotId, const ::com::sun::star::uno::Seque else if ( aName == sViewData ) rSet.Put( SfxUnoAnyItem( SID_VIEW_DATA, rProp.Value ) ); else if ( aName == sFilterData ) - { - Sequence< Any > lVal; - sal_Bool bOK = (rProp.Value >>= lVal); - DBG_ASSERT( bOK, "invalid type for FilterData" ) - if (bOK) - rSet.Put( SfxUnoAnyItem( SID_FILTER_DATA, rProp.Value ) ); - } + rSet.Put( SfxUnoAnyItem( SID_FILTER_DATA, rProp.Value ) ); else if ( aName == sInputStream ) { Reference< XInputStream > xVal; |