aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier <dev.git@javispedro.com>2021-09-19 22:45:18 +0200
committerJavier <dev.git@javispedro.com>2021-09-19 22:45:18 +0200
commit3c3dd84c51c75f2bced5bcf96ad83920bfffe86b (patch)
treecec15d3149d80766e40b51f33d40ef15afb0e667
parent118283b748359c3268f47e382762c90cd5c412ac (diff)
downloadscribiu-3c3dd84c51c75f2bced5bcf96ad83920bfffe86b.tar.gz
scribiu-3c3dd84c51c75f2bced5bcf96ad83920bfffe86b.zip
workaround for qt 5.11
-rw-r--r--README.md1
-rw-r--r--mainwindow.cc3
2 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md
index 2ddee0e..9fca1dc 100644
--- a/README.md
+++ b/README.md
@@ -20,6 +20,7 @@ For example, on Ubuntu, these correspond with packages:
qtbase5-dev
libqt5svg5-dev
qtmultimedia5-dev
+libqt5multimedia5-plugins
libudev-dev
libopenobex2-dev
libusb-1.0-0-dev
diff --git a/mainwindow.cc b/mainwindow.cc
index b66423a..cf1ef1a 100644
--- a/mainwindow.cc
+++ b/mainwindow.cc
@@ -456,7 +456,8 @@ QString MainWindow::formatDuration(qint64 time) const
}
}
+QT_WARNING_DISABLE_DEPRECATED
QString MainWindow::currentPlayerMediaPath() const
{
- return _player->media().request().url().toLocalFile();
+ return _player->media().canonicalUrl().toLocalFile();
}