summaryrefslogtreecommitdiffstats
path: root/examples/multimediawidgets
diff options
context:
space:
mode:
authorVaL Doroshchuk <valentyn.doroshchuk@qt.io>2019-04-24 10:56:24 +0200
committerVaL Doroshchuk <valentyn.doroshchuk@qt.io>2019-05-13 09:42:53 +0000
commit5ed9d1d830b90c5d5093cc7ca4a5c7cd5b15240c (patch)
treea316240590730ef6f7b8625e71b95fd0d5c2835a /examples/multimediawidgets
parentf0f354f2a1eec54733c871bf735f67e0c4ea945c (diff)
Deprecate canonicalUrl and canonicalRequest in QMediaContent
Since QMediaContent can contain only one content and media resources are already deprecated, canonicalUrl and canonicalRequest are a bit confusing and outdated. Deprecated and replaced by QMediaContent::request() which already contains the url. Change-Id: I418006e112f49466b0129bf1e6e1ae629c714538 Reviewed-by: Christian Strømme <christian.stromme@qt.io>
Diffstat (limited to 'examples/multimediawidgets')
-rw-r--r--examples/multimediawidgets/player/playlistmodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/multimediawidgets/player/playlistmodel.cpp b/examples/multimediawidgets/player/playlistmodel.cpp
index e5246bc37..718c24d2d 100644
--- a/examples/multimediawidgets/player/playlistmodel.cpp
+++ b/examples/multimediawidgets/player/playlistmodel.cpp
@@ -94,7 +94,7 @@ QVariant PlaylistModel::data(const QModelIndex &index, int role) const
if (index.isValid() && role == Qt::DisplayRole) {
QVariant value = m_data[index];
if (!value.isValid() && index.column() == Title) {
- QUrl location = m_playlist->media(index.row()).canonicalUrl();
+ QUrl location = m_playlist->media(index.row()).request().url();
return QFileInfo(location.path()).fileName();
}