diff options
author | Niklas Nebel <nn@openoffice.org> | 2000-09-19 16:56:04 +0000 |
---|---|---|
committer | Niklas Nebel <nn@openoffice.org> | 2000-09-19 16:56:04 +0000 |
commit | 58f16995ababae0d143f728884ff93cbebd170eb (patch) | |
tree | 1fa46478a0afed9089cb1911c4bc23840e83dc01 /sc/inc/viewopti.hxx | |
parent | d0484bcdcbffd42d242647a2fdc1a203d176b775 (diff) |
ScLinkConfigItem: parent methods reimplemented
Diffstat (limited to 'sc/inc/viewopti.hxx')
-rw-r--r-- | sc/inc/viewopti.hxx | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/sc/inc/viewopti.hxx b/sc/inc/viewopti.hxx index 0564b2b04cac..dd10ddba9370 100644 --- a/sc/inc/viewopti.hxx +++ b/sc/inc/viewopti.hxx @@ -2,9 +2,9 @@ * * $RCSfile: viewopti.hxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 16:44:50 $ + * last change: $Author: nn $ $Date: 2000-09-19 17:56:04 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -221,10 +221,15 @@ public: virtual void Notify( const com::sun::star::uno::Sequence<rtl::OUString>& aPropertyNames ); virtual void Commit(); - ConfigItem::GetProperties; - ConfigItem::EnableNotification; - ConfigItem::PutProperties; - ConfigItem::SetModified; + void SetModified() { ConfigItem::SetModified(); } + com::sun::star::uno::Sequence< com::sun::star::uno::Any> + GetProperties(const com::sun::star::uno::Sequence< rtl::OUString >& rNames) + { return ConfigItem::GetProperties( rNames ); } + sal_Bool PutProperties( const com::sun::star::uno::Sequence< rtl::OUString >& rNames, + const com::sun::star::uno::Sequence< com::sun::star::uno::Any>& rValues) + { return ConfigItem::PutProperties( rNames, rValues ); } + sal_Bool EnableNotification(com::sun::star::uno::Sequence< rtl::OUString >& rNames) + { return ConfigItem::EnableNotification( rNames ); } }; |