summaryrefslogtreecommitdiffstats
path: root/slideshow/source/engine/shapes/externalshapebase.cxx
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-22 21:20:15 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-02-23 03:38:49 +0000
commit0ce0c369aa8880dff9fe874ba85ec6f52ee37ddf (patch)
tree5024cba9f9ea5e3b23ea26025323f6aef39488d0 /slideshow/source/engine/shapes/externalshapebase.cxx
parentfdo#70414: Use correct target names for building Visual Studio projects. (diff)
downloadcore-0ce0c369aa8880dff9fe874ba85ec6f52ee37ddf.tar.gz
core-0ce0c369aa8880dff9fe874ba85ec6f52ee37ddf.zip
Remove unneccessary comments
Change-Id: I939160ae72fecbe3d4a60ce755730bd4c38497fb Reviewed-on: https://gerrit.libreoffice.org/8182 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'slideshow/source/engine/shapes/externalshapebase.cxx')
-rw-r--r--slideshow/source/engine/shapes/externalshapebase.cxx36
1 files changed, 18 insertions, 18 deletions
diff --git a/slideshow/source/engine/shapes/externalshapebase.cxx b/slideshow/source/engine/shapes/externalshapebase.cxx
index d6375a9e1cdf..a6daaec7c2b0 100644
--- a/slideshow/source/engine/shapes/externalshapebase.cxx
+++ b/slideshow/source/engine/shapes/externalshapebase.cxx
@@ -54,7 +54,7 @@ namespace slideshow
private:
// ViewEventHandler
- // -------------------------------------------------
+
virtual void viewAdded( const UnoViewSharedPtr& ) {}
virtual void viewRemoved( const UnoViewSharedPtr& ) {}
@@ -69,7 +69,7 @@ namespace slideshow
// IntrinsicAnimationEventHandler
- // -------------------------------------------------
+
virtual bool enableAnimations()
{
@@ -101,7 +101,7 @@ namespace slideshow
mrEventMultiplexer.addViewHandler( mpListener );
}
- // ---------------------------------------------------------------------
+
ExternalShapeBase::~ExternalShapeBase()
{
@@ -119,56 +119,56 @@ namespace slideshow
}
}
- // ---------------------------------------------------------------------
+
uno::Reference< drawing::XShape > ExternalShapeBase::getXShape() const
{
return mxShape;
}
- // ---------------------------------------------------------------------
+
void ExternalShapeBase::play()
{
implStartIntrinsicAnimation();
}
- // ---------------------------------------------------------------------
+
void ExternalShapeBase::stop()
{
implEndIntrinsicAnimation();
}
- // ---------------------------------------------------------------------
+
void ExternalShapeBase::pause()
{
implPauseIntrinsicAnimation();
}
- // ---------------------------------------------------------------------
+
bool ExternalShapeBase::isPlaying() const
{
return implIsIntrinsicAnimationPlaying();
}
- // ---------------------------------------------------------------------
+
void ExternalShapeBase::setMediaTime(double fTime)
{
implSetIntrinsicAnimationTime(fTime);
}
- // ---------------------------------------------------------------------
+
bool ExternalShapeBase::update() const
{
return render();
}
- // ---------------------------------------------------------------------
+
bool ExternalShapeBase::render() const
{
@@ -182,49 +182,49 @@ namespace slideshow
return implRender( maBounds );
}
- // ---------------------------------------------------------------------
+
bool ExternalShapeBase::isContentChanged() const
{
return true;
}
- // ---------------------------------------------------------------------
+
::basegfx::B2DRectangle ExternalShapeBase::getBounds() const
{
return maBounds;
}
- // ---------------------------------------------------------------------
+
::basegfx::B2DRectangle ExternalShapeBase::getDomBounds() const
{
return maBounds;
}
- // ---------------------------------------------------------------------
+
::basegfx::B2DRectangle ExternalShapeBase::getUpdateArea() const
{
return maBounds;
}
- // ---------------------------------------------------------------------
+
bool ExternalShapeBase::isVisible() const
{
return true;
}
- // ---------------------------------------------------------------------
+
double ExternalShapeBase::getPriority() const
{
return mnPriority;
}
- // ---------------------------------------------------------------------
+
bool ExternalShapeBase::isBackgroundDetached() const
{