summaryrefslogtreecommitdiffstats
path: root/include/xmloff/SinglePropertySetInfoCache.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/xmloff/SinglePropertySetInfoCache.hxx')
-rw-r--r--include/xmloff/SinglePropertySetInfoCache.hxx15
1 files changed, 5 insertions, 10 deletions
diff --git a/include/xmloff/SinglePropertySetInfoCache.hxx b/include/xmloff/SinglePropertySetInfoCache.hxx
index 28ed54698556..04b42fcb12b1 100644
--- a/include/xmloff/SinglePropertySetInfoCache.hxx
+++ b/include/xmloff/SinglePropertySetInfoCache.hxx
@@ -40,14 +40,11 @@ public:
~SinglePropertySetInfoCache() {};
bool hasProperty(
- const ::com::sun::star::uno::Reference<
- ::com::sun::star::beans::XPropertySet >& rPropSet,
- ::com::sun::star::uno::Reference<
- ::com::sun::star::beans::XPropertySetInfo >& rPropSetInfo );
+ const css::uno::Reference< css::beans::XPropertySet >& rPropSet,
+ css::uno::Reference< css::beans::XPropertySetInfo >& rPropSetInfo );
inline bool hasProperty(
- const ::com::sun::star::uno::Reference<
- ::com::sun::star::beans::XPropertySet>& rPropSet );
+ const css::uno::Reference< css::beans::XPropertySet>& rPropSet );
};
inline SinglePropertySetInfoCache::SinglePropertySetInfoCache(
@@ -57,11 +54,9 @@ inline SinglePropertySetInfoCache::SinglePropertySetInfoCache(
}
inline bool SinglePropertySetInfoCache::hasProperty(
- const ::com::sun::star::uno::Reference<
- ::com::sun::star::beans::XPropertySet>& rPropSet )
+ const css::uno::Reference< css::beans::XPropertySet>& rPropSet )
{
- ::com::sun::star::uno::Reference<
- ::com::sun::star::beans::XPropertySetInfo > xInfo;
+ css::uno::Reference< css::beans::XPropertySetInfo > xInfo;
return hasProperty( rPropSet, xInfo );
}