summaryrefslogtreecommitdiffstats
path: root/connectivity
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-12-21 11:18:25 +0200
committerNoel Grandin <noel@peralex.com>2012-12-21 11:18:25 +0200
commit53990ff94787d08dfc8cd1518120eb201836003f (patch)
tree3a17bd31ae289f0997083570fbd7d6c41406f3c6 /connectivity
parentfix for my UNO commits (diff)
downloadcore-53990ff94787d08dfc8cd1518120eb201836003f.tar.gz
core-53990ff94787d08dfc8cd1518120eb201836003f.zip
fixes for UNO changes
Fix KAB driver Change-Id: Iba44875122b813fb7ed2f09e3a8d9dbbef91d085
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/kab/KDriver.cxx4
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& )