diff options
author | Noel Grandin <noel@peralex.com> | 2012-12-21 11:18:25 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2012-12-21 11:18:25 +0200 |
commit | 53990ff94787d08dfc8cd1518120eb201836003f (patch) | |
tree | 3a17bd31ae289f0997083570fbd7d6c41406f3c6 /connectivity/source/drivers/kab | |
parent | 8df23e8bfacb3ed1570aa4e8589040e3beda0395 (diff) |
fixes for UNO changes
Fix KAB driver
Change-Id: Iba44875122b813fb7ed2f09e3a8d9dbbef91d085
Diffstat (limited to 'connectivity/source/drivers/kab')
-rw-r--r-- | connectivity/source/drivers/kab/KDriver.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/kab/KDriver.cxx b/connectivity/source/drivers/kab/KDriver.cxx index 9f32fdb54329..b9765c00b14d 100644 --- a/connectivity/source/drivers/kab/KDriver.cxx +++ b/connectivity/source/drivers/kab/KDriver.cxx @@ -26,7 +26,7 @@ #include <com/sun/star/configuration/theDefaultProvider.hpp> #include <com/sun/star/sdb/SQLContext.hpp> #include <com/sun/star/lang/NullPointerException.hpp> -#include <com/sun/star/frame/XDesktop.hpp> +#include <com/sun/star/frame/Desktop.hpp> #include <comphelper/processfactory.hxx> #include <rtl/ustrbuf.hxx> #include <tools/diagnose_ex.h> @@ -313,7 +313,7 @@ KabDriver::KabDriver( osl_atomic_increment( &m_refCount ); try { - Reference< XDesktop2 > xDesktop = css::frame::Desktop::create( m_xContext); + Reference< XDesktop2 > xDesktop = Desktop::create( m_xContext); xDesktop->addTerminateListener( this ); } catch( const Exception& ) |