summaryrefslogtreecommitdiffstats
path: root/src/multimedia/audio/qsoundeffect.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/multimedia/audio/qsoundeffect.cpp')
-rw-r--r--src/multimedia/audio/qsoundeffect.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/multimedia/audio/qsoundeffect.cpp b/src/multimedia/audio/qsoundeffect.cpp
index b9f83065b..3b3d2339b 100644
--- a/src/multimedia/audio/qsoundeffect.cpp
+++ b/src/multimedia/audio/qsoundeffect.cpp
@@ -52,7 +52,6 @@ QT_BEGIN_NAMESPACE
/*!
\qmlclass SoundEffect QSoundEffect
\brief The SoundEffect element provides a way to play sound effects in QML.
- \since 1.0
\inmodule QtMultimedia
@@ -65,14 +64,12 @@ QT_BEGIN_NAMESPACE
/*!
\qmlproperty url SoundEffect::source
- \since 1.0
This property provides a way to control the sound to play.
*/
/*!
\qmlproperty int SoundEffect::loops
- \since 1.0
This property provides a way to control the number of times to repeat the sound on each play().
@@ -81,7 +78,6 @@ QT_BEGIN_NAMESPACE
/*!
\qmlproperty qreal SoundEffect::volume
- \since 1.0
This property holds the volume of the playback, from 0.0 (silent) to 1.0 (maximum volume).
Note: Currently this has no effect on Mac OS X.
@@ -89,21 +85,18 @@ QT_BEGIN_NAMESPACE
/*!
\qmlproperty bool SoundEffect::muted
- \since 1.0
This property provides a way to control muting.
*/
/*!
\qmlproperty bool SoundEffect::playing
- \since 1.1
This property indicates if the soundeffect is playing or not.
*/
/*!
\qmlproperty int SoundEffect::status
- \since 1.0
This property indicates the following status of the soundeffect.
@@ -115,42 +108,36 @@ QT_BEGIN_NAMESPACE
/*!
\qmlsignal SoundEffect::sourceChanged()
- \since 1.0
This handler is called when the source has changed.
*/
/*!
\qmlsignal SoundEffect::loopCountChanged()
- \since 1.0
This handler is called when the initial number of loops has changed.
*/
/*!
\qmlsignal SoundEffect::loopsRemainingChanged()
- \since 1.0
This handler is called when the remaining number of loops has changed.
*/
/*!
\qmlsignal SoundEffect::volumeChanged()
- \since 1.0
This handler is called when the volume has changed.
*/
/*!
\qmlsignal SoundEffect::mutedChanged()
- \since 1.0
This handler is called when the mute state has changed.
*/
/*!
\qmlsignal SoundEffect::playingChanged()
- \since 1.0
This handler is called when the playing property has changed.
*/
@@ -159,12 +146,10 @@ QT_BEGIN_NAMESPACE
\qmlsignal SoundEffect::statusChanged()
This handler is called when the status property has changed.
- \since 1.0
*/
/*!
- \since 1.0
*/
QSoundEffect::QSoundEffect(QObject *parent) :
@@ -274,7 +259,6 @@ bool QSoundEffect::isLoaded() const
This is the default method for SoundEffect.
\snippet doc/src/snippets/multimedia-snippets/soundeffect.qml play sound on click
- \since 1.0
*/
void QSoundEffect::play()
{
@@ -299,7 +283,6 @@ QSoundEffect::Status QSoundEffect::status() const
Note that if the backend is PulseAudio, due to the limitation of the underlying API,
tis stop will only prevent next looping but will not be able to stop current playback immediately.
- \since 1.0
*/
void QSoundEffect::stop()
{