diff options
author | Björn Milcke <bm@openoffice.org> | 2003-10-17 13:30:15 +0000 |
---|---|---|
committer | Björn Milcke <bm@openoffice.org> | 2003-10-17 13:30:15 +0000 |
commit | 4ae7a3fe1111c676980ba6cf668bb020c2dd22c1 (patch) | |
tree | 3558f84a9660bb99169ff4177a7937dedc7995ed /chart2/source/controller/inc/CharacterPropertyItemConverter.hxx | |
parent | 78bc899c6f16b8af5dad799be9c9d1c4ab3c57da (diff) |
catch exceptions when properties are not found
Diffstat (limited to 'chart2/source/controller/inc/CharacterPropertyItemConverter.hxx')
-rw-r--r-- | chart2/source/controller/inc/CharacterPropertyItemConverter.hxx | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/chart2/source/controller/inc/CharacterPropertyItemConverter.hxx b/chart2/source/controller/inc/CharacterPropertyItemConverter.hxx index 924c0e6bf47d..8810ef51de66 100644 --- a/chart2/source/controller/inc/CharacterPropertyItemConverter.hxx +++ b/chart2/source/controller/inc/CharacterPropertyItemConverter.hxx @@ -2,9 +2,9 @@ * * $RCSfile: CharacterPropertyItemConverter.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: bm $ $Date: 2003-10-07 17:18:15 $ + * last change: $Author: bm $ $Date: 2003-10-17 14:30:09 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -89,8 +89,10 @@ protected: virtual const USHORT * GetWhichPairs() const; virtual bool GetItemPropertyName( USHORT nWhichId, ::rtl::OUString & rOutName ) const; - virtual void FillSpecialItem( USHORT nWhichId, SfxItemSet & rOutItemSet ) const; - virtual bool ApplySpecialItem( USHORT nWhichId, const SfxItemSet & rItemSet ) const; + virtual void FillSpecialItem( USHORT nWhichId, SfxItemSet & rOutItemSet ) const + throw( ::com::sun::star::uno::Exception ); + virtual bool ApplySpecialItem( USHORT nWhichId, const SfxItemSet & rItemSet ) const + throw( ::com::sun::star::uno::Exception ); }; } // namespace wrapper |