[Libreoffice-commits] core.git: sd/source

Luboš Luňák l.lunak at suse.cz
Wed Feb 13 05:52:03 PST 2013


 sd/source/ui/slideshow/slideshow.cxx |    5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

New commits:
commit 005729c78705434efd2a5f46901eb63a5618b5ce
Author: Luboš Luňák <l.lunak at suse.cz>
Date:   Wed Feb 13 14:49:45 2013 +0100

    fix ambiguity in pch build
    
    Change-Id: I1a1638d9a5ad6bea002336d20c93c450d4bc1650

diff --git a/sd/source/ui/slideshow/slideshow.cxx b/sd/source/ui/slideshow/slideshow.cxx
index af2033e..99e7efc 100644
--- a/sd/source/ui/slideshow/slideshow.cxx
+++ b/sd/source/ui/slideshow/slideshow.cxx
@@ -63,7 +63,6 @@ using namespace ::sd;
 using namespace ::cppu;
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::presentation;
 using namespace ::com::sun::star::drawing;
 using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::lang;
@@ -1312,9 +1311,9 @@ bool SlideShow::dependsOn( ViewShellBase* pViewShellBase )
 
 // ---------------------------------------------------------
 
-Reference< XPresentation2 > CreatePresentation( const SdDrawDocument& rDocument )
+Reference< presentation::XPresentation2 > CreatePresentation( const SdDrawDocument& rDocument )
 {
-    return Reference< XPresentation2 >( SlideShow::Create( const_cast< SdDrawDocument* >( &rDocument ) ).get() );
+    return Reference< presentation::XPresentation2 >( SlideShow::Create( const_cast< SdDrawDocument* >( &rDocument ) ).get() );
 }
 
 // ---------------------------------------------------------


More information about the Libreoffice-commits mailing list