summaryrefslogtreecommitdiffstats
path: root/include/vcl/lazydelete.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl/lazydelete.hxx')
-rw-r--r--include/vcl/lazydelete.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/vcl/lazydelete.hxx b/include/vcl/lazydelete.hxx
index b5dfe23ca569..bd1cc7515655 100644
--- a/include/vcl/lazydelete.hxx
+++ b/include/vcl/lazydelete.hxx
@@ -271,24 +271,24 @@ namespace vcl
template <typename I>
class DeleteUnoReferenceOnDeinit : public vcl::DeleteOnDeinitBase
{
- ::com::sun::star::uno::Reference<I> m_xI;
+ css::uno::Reference<I> m_xI;
virtual void doCleanup() override { set(NULL); }
public:
- DeleteUnoReferenceOnDeinit(const ::com::sun::star::uno::Reference<I>& r_xI ) : m_xI( r_xI ) {
+ DeleteUnoReferenceOnDeinit(const css::uno::Reference<I>& r_xI ) : m_xI( r_xI ) {
addDeinitContainer( this ); }
virtual ~DeleteUnoReferenceOnDeinit() {}
- ::com::sun::star::uno::Reference<I> get() { return m_xI; }
+ css::uno::Reference<I> get() { return m_xI; }
- void set (const ::com::sun::star::uno::Reference<I>& r_xNew )
+ void set (const css::uno::Reference<I>& r_xNew )
{
- ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent> xComponent (m_xI, ::com::sun::star::uno::UNO_QUERY);
+ css::uno::Reference< css::lang::XComponent> xComponent (m_xI, css::uno::UNO_QUERY);
m_xI = r_xNew;
if (xComponent.is()) try
{
xComponent->dispose();
}
- catch( ::com::sun::star::uno::Exception& )
+ catch( css::uno::Exception& )
{
}
}