summaryrefslogtreecommitdiff
path: root/linguistic
diff options
context:
space:
mode:
authorThomas Lange <tl@openoffice.org>2000-11-29 15:14:21 +0000
committerThomas Lange <tl@openoffice.org>2000-11-29 15:14:21 +0000
commitc86c8ac1a8095d1173be87e0b0875e4949af701d (patch)
tree34cad8e0240b586ce0e1c0f222bd2d390d514710 /linguistic
parente25de80d1ed322d51f8aea6d4517c78f6b0f995e (diff)
#80600# SetSetProperties added to LinguOptConfig class
Diffstat (limited to 'linguistic')
-rw-r--r--linguistic/source/lngopt.hxx29
1 files changed, 23 insertions, 6 deletions
diff --git a/linguistic/source/lngopt.hxx b/linguistic/source/lngopt.hxx
index 6926d19ef0c0..c05a6ccbf690 100644
--- a/linguistic/source/lngopt.hxx
+++ b/linguistic/source/lngopt.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: lngopt.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: os $ $Date: 2000-11-28 12:21:19 $
+ * last change: $Author: tl $ $Date: 2000-11-29 16:14:21 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -135,15 +135,32 @@ public:
::com::sun::star::uno::Sequence< rtl::OUString > GetPropertyNames( INT16 nCfgItem );
com::sun::star::uno::Sequence< com::sun::star::uno::Any >
- GetProperties(const ::com::sun::star::uno::Sequence< rtl::OUString >& rNames )
- {return ConfigItem::GetProperties(rNames);}
+ 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)
+ 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 SetSetProperties(
+ const rtl::OUString& rNode,
+ com::sun::star::uno::Sequence<
+ com::sun::star::beans::PropertyValue > rValues )
+ {
+ return ConfigItem::SetSetProperties( rNode, rValues );
+ }
+
+#ifdef DEBUG
+ ::com::sun::star::uno::Sequence< rtl::OUString >GetNodeNames(const rtl::OUString& rNode)
+ {return ConfigItem::GetNodeNames(rNode);}
+#endif
+
};