diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-08-20 21:36:29 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-08-21 09:03:20 +0200 |
commit | 78b2d8211112df0a5938efbc8db0f8e48ae9e2e7 (patch) | |
tree | ef848936c1f759e6734189ecde1bae317ff2e9a6 /include | |
parent | f133857cc61dba9505fc2aae23dcac2f47f4ef50 (diff) |
comphelper: starbeans -> css::beans
Change-Id: Iedfc4460194f179b20d734cb7671894213c77008
Diffstat (limited to 'include')
-rw-r--r-- | include/comphelper/proparrhlp.hxx | 2 | ||||
-rw-r--r-- | include/comphelper/property.hxx | 11 |
2 files changed, 5 insertions, 8 deletions
diff --git a/include/comphelper/proparrhlp.hxx b/include/comphelper/proparrhlp.hxx index ece8c3257534..2f7003a16f05 100644 --- a/include/comphelper/proparrhlp.hxx +++ b/include/comphelper/proparrhlp.hxx @@ -33,8 +33,6 @@ namespace cppu { //... namespace comphelper ................................................ namespace comphelper { - namespace starbeans = ::com::sun::star::beans; - template <typename TYPE> struct OPropertyArrayUsageHelperMutex : public rtl::Static< ::osl::Mutex, OPropertyArrayUsageHelperMutex<TYPE> > {}; diff --git a/include/comphelper/property.hxx b/include/comphelper/property.hxx index 71fd71c07e76..56c0f6a019b8 100644 --- a/include/comphelper/property.hxx +++ b/include/comphelper/property.hxx @@ -35,7 +35,6 @@ //... namespace comphelper ....................................................... namespace comphelper { - namespace starbeans = ::com::sun::star::beans; /** compare two properties by name */ @@ -77,7 +76,7 @@ namespace comphelper /// remove the property with the given name from the given sequence -COMPHELPER_DLLPUBLIC void RemoveProperty(css::uno::Sequence<starbeans::Property>& seqProps, const OUString& _rPropName); +COMPHELPER_DLLPUBLIC void RemoveProperty(css::uno::Sequence<css::beans::Property>& seqProps, const OUString& _rPropName); /** within the given property sequence, modify attributes of a special property @@ -86,19 +85,19 @@ COMPHELPER_DLLPUBLIC void RemoveProperty(css::uno::Sequence<starbeans::Property> @param _nAddAttrib the attributes which should be added @param _nRemoveAttrib the attributes which should be removed */ -COMPHELPER_DLLPUBLIC void ModifyPropertyAttributes(css::uno::Sequence<starbeans::Property>& _rProps, const OUString& _sPropName, sal_Int16 _nAddAttrib, sal_Int16 _nRemoveAttrib); +COMPHELPER_DLLPUBLIC void ModifyPropertyAttributes(css::uno::Sequence<css::beans::Property>& _rProps, const OUString& _sPropName, sal_Int16 _nAddAttrib, sal_Int16 _nRemoveAttrib); /** check if the given set has the given property. */ -COMPHELPER_DLLPUBLIC bool hasProperty(const OUString& _rName, const css::uno::Reference<starbeans::XPropertySet>& _rxSet); +COMPHELPER_DLLPUBLIC bool hasProperty(const OUString& _rName, const css::uno::Reference<css::beans::XPropertySet>& _rxSet); /** copy properties between property sets, in compliance with the property attributes of the target object */ -COMPHELPER_DLLPUBLIC void copyProperties(const css::uno::Reference<starbeans::XPropertySet>& _rxSource, - const css::uno::Reference<starbeans::XPropertySet>& _rxDest); +COMPHELPER_DLLPUBLIC void copyProperties(const css::uno::Reference<css::beans::XPropertySet>& _rxSource, + const css::uno::Reference<css::beans::XPropertySet>& _rxDest); //= property conversion helpers |