summaryrefslogtreecommitdiff
path: root/linguistic/source/lngopt.hxx
diff options
context:
space:
mode:
authorOliver Specht <os@openoffice.org>2000-11-28 11:21:19 +0000
committerOliver Specht <os@openoffice.org>2000-11-28 11:21:19 +0000
commit3cd1e703627fb154a9c117fe6e136d85dd75b0d4 (patch)
treede657eeb79a77f877b2120f49503f04f8ed1b3a2 /linguistic/source/lngopt.hxx
parent631a31752b37a76558e301118fea767a283ef07c (diff)
#80600# ConfigItem UNIX conform
Diffstat (limited to 'linguistic/source/lngopt.hxx')
-rw-r--r--linguistic/source/lngopt.hxx18
1 files changed, 14 insertions, 4 deletions
diff --git a/linguistic/source/lngopt.hxx b/linguistic/source/lngopt.hxx
index 4852667402ff..6926d19ef0c0 100644
--- a/linguistic/source/lngopt.hxx
+++ b/linguistic/source/lngopt.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: lngopt.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: tl $ $Date: 2000-11-28 03:12:44 $
+ * last change: $Author: os $ $Date: 2000-11-28 12:21:19 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -132,8 +132,18 @@ public:
LinguOptConfig( const String& rPath ) :
ConfigItem( rPath )
{}
- ConfigItem::GetProperties;
- ConfigItem::PutProperties;
+ ::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);}
+
+ 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);
+ }
};