summaryrefslogtreecommitdiff
path: root/include/comphelper/proparrhlp.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/comphelper/proparrhlp.hxx')
-rw-r--r--include/comphelper/proparrhlp.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/comphelper/proparrhlp.hxx b/include/comphelper/proparrhlp.hxx
index eb28598093aa..c78f736eb956 100644
--- a/include/comphelper/proparrhlp.hxx
+++ b/include/comphelper/proparrhlp.hxx
@@ -90,8 +90,8 @@ protected:
@param _rAggregateProps out parameter to be filled with the properties of your aggregate.
*/
virtual void fillProperties(
- ::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property >& /* [out] */ _rProps,
- ::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property >& /* [out] */ _rAggregateProps
+ css::uno::Sequence< css::beans::Property >& /* [out] */ _rProps,
+ css::uno::Sequence< css::beans::Property >& /* [out] */ _rAggregateProps
) const = 0;
/** creates an OPropertyArrayAggregationHelper filled with properties for which's initialization
@@ -143,8 +143,8 @@ template <class TYPE>
template <class TYPE> inline
::cppu::IPropertyArrayHelper* OAggregationArrayUsageHelper<TYPE>::createArrayHelper() const
{
- ::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property > aProps;
- ::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property > aAggregateProps;
+ css::uno::Sequence< css::beans::Property > aProps;
+ css::uno::Sequence< css::beans::Property > aAggregateProps;
fillProperties(aProps, aAggregateProps);
OSL_ENSURE(aProps.getLength(), "OAggregationArrayUsageHelper::createArrayHelper : fillProperties returned nonsense !");
return new OPropertyArrayAggregationHelper(aProps, aAggregateProps, getInfoService(), getFirstAggregateId());