diff options
author | Kurt Zenker <kz@openoffice.org> | 2007-05-15 11:18:23 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2007-05-15 11:18:23 +0000 |
commit | e84ed574793cdedfaef5189ec3813f2ad1fe4dcf (patch) | |
tree | 9ee3dcdc2c04a06386b0456dcc36e5e47f0d1879 /cppuhelper/source/propshlp.cxx | |
parent | 49fd1e6e518be2d45ea3a0ee0e12876936dab46f (diff) |
#i10000# OPropertySetHelper::getTypes not const prevent build breaks(fs)
Diffstat (limited to 'cppuhelper/source/propshlp.cxx')
-rw-r--r-- | cppuhelper/source/propshlp.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cppuhelper/source/propshlp.cxx b/cppuhelper/source/propshlp.cxx index 11f505be3310..fb89aba15ad0 100644 --- a/cppuhelper/source/propshlp.cxx +++ b/cppuhelper/source/propshlp.cxx @@ -4,9 +4,9 @@ * * $RCSfile: propshlp.cxx,v $ * - * $Revision: 1.16 $ + * $Revision: 1.17 $ * - * last change: $Author: kz $ $Date: 2007-05-10 09:46:03 $ + * last change: $Author: kz $ $Date: 2007-05-15 12:18:23 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -193,7 +193,7 @@ Any OPropertySetHelper::queryInterface( const ::com::sun::star::uno::Type & rTyp /** * called from the derivee's XTypeProvider::getTypes implementation */ -::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > OPropertySetHelper::getTypes() const +::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > OPropertySetHelper::getTypes() throw (RuntimeException) { Sequence< ::com::sun::star::uno::Type > aTypes( 3 ); |