summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/slideview.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'slideshow/source/engine/slideview.cxx')
-rw-r--r--slideshow/source/engine/slideview.cxx12
1 files changed, 5 insertions, 7 deletions
diff --git a/slideshow/source/engine/slideview.cxx b/slideshow/source/engine/slideview.cxx
index e63ee87f0d3d..04170a72cc1b 100644
--- a/slideshow/source/engine/slideview.cxx
+++ b/slideshow/source/engine/slideview.cxx
@@ -180,8 +180,7 @@ void clearRect( ::cppcanvas::CanvasSharedPtr const& pCanvas,
basegfx::B2DRange(rArea)));
::cppcanvas::PolyPolygonSharedPtr pPolyPoly(
- ::cppcanvas::BaseGfxFactory::getInstance().createPolyPolygon( pCanvas,
- aPoly ) );
+ ::cppcanvas::BaseGfxFactory::createPolyPolygon( pCanvas, aPoly ) );
if( pPolyPoly )
{
@@ -197,8 +196,7 @@ void clearRect( ::cppcanvas::CanvasSharedPtr const& pCanvas,
if( pCanvas->getClip() )
{
::cppcanvas::PolyPolygonSharedPtr pPolyPoly2(
- ::cppcanvas::BaseGfxFactory::getInstance().createPolyPolygon( pCliplessCanvas,
- aPoly ));
+ ::cppcanvas::BaseGfxFactory::createPolyPolygon( pCliplessCanvas, aPoly ));
if( pPolyPoly2 )
{
pPolyPoly2->setRGBALineColor( 0x008000FFU );
@@ -717,7 +715,7 @@ private:
virtual void _dispose() SAL_OVERRIDE;
virtual uno::Reference<presentation::XSlideShowView> getUnoView()const SAL_OVERRIDE;
virtual void setIsSoundEnabled (const bool bValue) SAL_OVERRIDE;
- virtual bool isSoundEnabled (void) const SAL_OVERRIDE;
+ virtual bool isSoundEnabled() const SAL_OVERRIDE;
// XEventListener:
virtual void SAL_CALL disposing( lang::EventObject const& evt )
@@ -782,7 +780,7 @@ SlideView::SlideView( const uno::Reference<presentation::XSlideShowView>& xView,
ENSURE_OR_THROW( mxView.is(),
"SlideView::SlideView(): Invalid view" );
- mpCanvas = cppcanvas::VCLFactory::getInstance().createSpriteCanvas(
+ mpCanvas = cppcanvas::VCLFactory::createSpriteCanvas(
xView->getCanvas() );
ENSURE_OR_THROW( mpCanvas,
"Could not create cppcanvas" );
@@ -1018,7 +1016,7 @@ void SlideView::setIsSoundEnabled (const bool bValue)
mbIsSoundEnabled = bValue;
}
-bool SlideView::isSoundEnabled (void) const
+bool SlideView::isSoundEnabled() const
{
return mbIsSoundEnabled;
}