Remove antiquated \since lines in docs.
They aren't useful in the case of QtMultimedia{Kit}
Change-Id: If1b0b6625763c85907fb05beb9c440046472ddef
Reviewed-by: Jonas Rabbe <jonas.rabbe@nokia.com>
This commit is contained in:
committed by
Qt by Nokia
parent
b228ff95d7
commit
a6268601c9
@@ -51,7 +51,6 @@ QT_BEGIN_NAMESPACE
|
||||
|
||||
\brief The QMediaPlaylistProvider class provides an abstract list of media.
|
||||
\inmodule QtMultimedia
|
||||
\since 1.0
|
||||
|
||||
\sa QMediaPlaylist
|
||||
*/
|
||||
@@ -84,7 +83,6 @@ QMediaPlaylistProvider::~QMediaPlaylistProvider()
|
||||
\fn QMediaPlaylistProvider::mediaCount() const;
|
||||
|
||||
Returns the size of playlist.
|
||||
\since 1.0
|
||||
*/
|
||||
|
||||
/*!
|
||||
@@ -93,7 +91,6 @@ QMediaPlaylistProvider::~QMediaPlaylistProvider()
|
||||
Returns the media at \a index in the playlist.
|
||||
|
||||
If the index is invalid this will return a null media content.
|
||||
\since 1.0
|
||||
*/
|
||||
|
||||
|
||||
@@ -105,7 +102,6 @@ QMediaPlaylistProvider::~QMediaPlaylistProvider()
|
||||
|
||||
Returns true if the provider supports the format and loading from the locations URL protocol,
|
||||
otherwise this will return false.
|
||||
\since 1.0
|
||||
*/
|
||||
bool QMediaPlaylistProvider::load(const QUrl &location, const char *format)
|
||||
{
|
||||
@@ -122,7 +118,6 @@ bool QMediaPlaylistProvider::load(const QUrl &location, const char *format)
|
||||
|
||||
Returns true if the provider supports the format and loading from an I/O device, otherwise this
|
||||
will return false.
|
||||
\since 1.0
|
||||
*/
|
||||
bool QMediaPlaylistProvider::load(QIODevice * device, const char *format)
|
||||
{
|
||||
@@ -136,7 +131,6 @@ bool QMediaPlaylistProvider::load(QIODevice * device, const char *format)
|
||||
the writer will inspect the URL to guess the format.
|
||||
|
||||
Returns true if the playlist was saved successfully; and false otherwise.
|
||||
\since 1.0
|
||||
*/
|
||||
bool QMediaPlaylistProvider::save(const QUrl &location, const char *format)
|
||||
{
|
||||
@@ -149,7 +143,6 @@ bool QMediaPlaylistProvider::save(const QUrl &location, const char *format)
|
||||
Saves the contents of a playlist to an I/O \a device in the specified \a format.
|
||||
|
||||
Returns true if the playlist was saved successfully; and false otherwise.
|
||||
\since 1.0
|
||||
*/
|
||||
bool QMediaPlaylistProvider::save(QIODevice * device, const char *format)
|
||||
{
|
||||
@@ -160,7 +153,6 @@ bool QMediaPlaylistProvider::save(QIODevice * device, const char *format)
|
||||
|
||||
/*!
|
||||
Returns true if a playlist is read-only; otherwise returns false.
|
||||
\since 1.0
|
||||
*/
|
||||
bool QMediaPlaylistProvider::isReadOnly() const
|
||||
{
|
||||
@@ -171,7 +163,6 @@ bool QMediaPlaylistProvider::isReadOnly() const
|
||||
Append \a media to a playlist.
|
||||
|
||||
Returns true if the media was appended; and false otherwise.
|
||||
\since 1.0
|
||||
*/
|
||||
bool QMediaPlaylistProvider::addMedia(const QMediaContent &media)
|
||||
{
|
||||
@@ -183,7 +174,6 @@ bool QMediaPlaylistProvider::addMedia(const QMediaContent &media)
|
||||
Append multiple media \a items to a playlist.
|
||||
|
||||
Returns true if the media items were appended; and false otherwise.
|
||||
\since 1.0
|
||||
*/
|
||||
bool QMediaPlaylistProvider::addMedia(const QList<QMediaContent> &items)
|
||||
{
|
||||
@@ -199,7 +189,6 @@ bool QMediaPlaylistProvider::addMedia(const QList<QMediaContent> &items)
|
||||
Inserts \a media into a playlist at \a position.
|
||||
|
||||
Returns true if the media was inserted; and false otherwise.
|
||||
\since 1.0
|
||||
*/
|
||||
bool QMediaPlaylistProvider::insertMedia(int position, const QMediaContent &media)
|
||||
{
|
||||
@@ -212,7 +201,6 @@ bool QMediaPlaylistProvider::insertMedia(int position, const QMediaContent &medi
|
||||
Inserts multiple media \a items into a playlist at \a position.
|
||||
|
||||
Returns true if the media \a items were inserted; and false otherwise.
|
||||
\since 1.0
|
||||
*/
|
||||
bool QMediaPlaylistProvider::insertMedia(int position, const QList<QMediaContent> &items)
|
||||
{
|
||||
@@ -229,7 +217,6 @@ bool QMediaPlaylistProvider::insertMedia(int position, const QList<QMediaContent
|
||||
Removes the media at \a position from a playlist.
|
||||
|
||||
Returns true if the media was removed; and false otherwise.
|
||||
\since 1.0
|
||||
*/
|
||||
bool QMediaPlaylistProvider::removeMedia(int position)
|
||||
{
|
||||
@@ -241,7 +228,6 @@ bool QMediaPlaylistProvider::removeMedia(int position)
|
||||
Removes the media between the given \a start and \a end positions from a playlist.
|
||||
|
||||
Returns true if the media was removed; and false otherwise.
|
||||
\since 1.0
|
||||
*/
|
||||
bool QMediaPlaylistProvider::removeMedia(int start, int end)
|
||||
{
|
||||
@@ -257,7 +243,6 @@ bool QMediaPlaylistProvider::removeMedia(int start, int end)
|
||||
Removes all media from a playlist.
|
||||
|
||||
Returns true if the media was removed; and false otherwise.
|
||||
\since 1.0
|
||||
*/
|
||||
bool QMediaPlaylistProvider::clear()
|
||||
{
|
||||
@@ -266,7 +251,6 @@ bool QMediaPlaylistProvider::clear()
|
||||
|
||||
/*!
|
||||
Shuffles the contents of a playlist.
|
||||
\since 1.0
|
||||
*/
|
||||
void QMediaPlaylistProvider::shuffle()
|
||||
{
|
||||
@@ -277,7 +261,6 @@ void QMediaPlaylistProvider::shuffle()
|
||||
|
||||
Signals that new media is about to be inserted into a playlist between the \a start and \a end
|
||||
positions.
|
||||
\since 1.0
|
||||
*/
|
||||
|
||||
/*!
|
||||
@@ -285,7 +268,6 @@ void QMediaPlaylistProvider::shuffle()
|
||||
|
||||
Signals that new media has been inserted into a playlist between the \a start and \a end
|
||||
positions.
|
||||
\since 1.0
|
||||
*/
|
||||
|
||||
/*!
|
||||
@@ -293,35 +275,30 @@ void QMediaPlaylistProvider::shuffle()
|
||||
|
||||
Signals that media is about to be removed from a playlist between the \a start and \a end
|
||||
positions.
|
||||
\since 1.0
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QMediaPlaylistProvider::mediaRemoved(int start, int end);
|
||||
|
||||
Signals that media has been removed from a playlist between the \a start and \a end positions.
|
||||
\since 1.0
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QMediaPlaylistProvider::mediaChanged(int start, int end);
|
||||
|
||||
Signals that media in playlist between the \a start and \a end positions inclusive has changed.
|
||||
\since 1.0
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QMediaPlaylistProvider::loaded()
|
||||
|
||||
Signals that a load() finished successfully.
|
||||
\since 1.0
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QMediaPlaylistProvider::loadFailed(QMediaPlaylist::Error error, const QString& errorMessage)
|
||||
|
||||
Signals that a load failed() due to an \a error. The \a errorMessage provides more information.
|
||||
\since 1.0
|
||||
*/
|
||||
|
||||
#include "moc_qmediaplaylistprovider.cpp"
|
||||
|
||||
Reference in New Issue
Block a user