diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2013-02-13 14:49:45 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2013-02-13 14:49:45 +0100 |
commit | 005729c78705434efd2a5f46901eb63a5618b5ce (patch) | |
tree | 4101f68623503da3c49c2291ed82458cb30b2c85 /sd | |
parent | 2b5fedb54a7f9569b817c24c1a9b16c17c09cfd9 (diff) |
fix ambiguity in pch build
Change-Id: I1a1638d9a5ad6bea002336d20c93c450d4bc1650
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/slideshow/slideshow.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sd/source/ui/slideshow/slideshow.cxx b/sd/source/ui/slideshow/slideshow.cxx index af2033e8560b..99e7efc991f2 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() ); } // --------------------------------------------------------- |