[Libreoffice-commits] .: connectivity/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Fri Dec 21 01:19:44 PST 2012


 connectivity/source/drivers/kab/KDriver.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 53990ff94787d08dfc8cd1518120eb201836003f
Author: Noel Grandin <noel at peralex.com>
Date:   Fri Dec 21 11:18:25 2012 +0200

    fixes for UNO changes
    
    Fix KAB driver
    
    Change-Id: Iba44875122b813fb7ed2f09e3a8d9dbbef91d085

diff --git a/connectivity/source/drivers/kab/KDriver.cxx b/connectivity/source/drivers/kab/KDriver.cxx
index 9f32fdb..b9765c0 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& )


More information about the Libreoffice-commits mailing list