summaryrefslogtreecommitdiff
path: root/include/vcl/lazydelete.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-23 10:32:47 +0200
committerNoel Grandin <noel@peralex.com>2015-10-23 12:05:04 +0200
commit1c909a13a0816e20d365000cc527d93e02633b0c (patch)
tree7a402659f9696c01ceeca51c5ddd2127b3b0e815 /include/vcl/lazydelete.hxx
parentd29e614ff9cd91c4e4a1bada6a21884e33323f8d (diff)
com::sun::star->css in include/ucbhelper to include/xmlscript
Change-Id: Iaa7f0b8455a601d3992c08cde0943c709c417256
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& )
{
}
}