summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/soundplayer.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2007-06-27 14:50:15 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2007-06-27 14:50:15 +0000
commit1192cd1f8ac344d95a47f9d2cec0060206070175 (patch)
tree7d94d77ab7757014171cb481711551e992aa8f4b /slideshow/source/engine/soundplayer.cxx
parent740de9cb97159d2fe37054057a55e58a36ff27be (diff)
INTEGRATION: CWS impress122 (1.6.30); FILE MERGED
2007/06/14 09:58:24 cl 1.6.30.1: #i24969# enable to play sound over more than one slide and allow stop sound
Diffstat (limited to 'slideshow/source/engine/soundplayer.cxx')
-rw-r--r--slideshow/source/engine/soundplayer.cxx9
1 files changed, 7 insertions, 2 deletions
diff --git a/slideshow/source/engine/soundplayer.cxx b/slideshow/source/engine/soundplayer.cxx
index aa6685dab3e8..94d165ae79cf 100644
--- a/slideshow/source/engine/soundplayer.cxx
+++ b/slideshow/source/engine/soundplayer.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: soundplayer.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: kz $ $Date: 2006-12-13 15:20:54 $
+ * last change: $Author: hr $ $Date: 2007-06-27 15:50:15 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -192,5 +192,10 @@ namespace slideshow
return true;
}
+ void SoundPlayer::setPlaybackLoop( bool bLoop )
+ {
+ if( mxPlayer.is() )
+ mxPlayer->setPlaybackLoop( bLoop );
+ }
}
}