diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2020-03-26 15:33:09 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2020-03-26 15:33:09 +0000 |
| commit | 5a581e577a888eeb61d89a9b9936b08189655275 (patch) | |
| tree | 309e1a355ae51abf96e7c50854c7c2449e67126d /src/plugins | |
| parent | d14695a42fc162d8958ac4cc75e26bfa5e5e3b47 (diff) | |
| download | qmmp-5a581e577a888eeb61d89a9b9936b08189655275.tar.gz qmmp-5a581e577a888eeb61d89a9b9936b08189655275.tar.bz2 qmmp-5a581e577a888eeb61d89a9b9936b08189655275.zip | |
udisks: fixed build with Qt 5.5
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@9314 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins')
| -rw-r--r-- | src/plugins/General/udisks2/udisks2device.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/plugins/General/udisks2/udisks2device.cpp b/src/plugins/General/udisks2/udisks2device.cpp index 52873c5e0..f50263c65 100644 --- a/src/plugins/General/udisks2/udisks2device.cpp +++ b/src/plugins/General/udisks2/udisks2device.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2013-2016 by Ilya Kotov * + * Copyright (C) 2013-2020 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -22,6 +22,9 @@ #include <QDBusConnection> #include <QByteArray> #include <QDBusMetaType> +#if (QT_VERSION < QT_VERSION_CHECK(5, 7, 0)) //qAsConst template +#include <qmmp/qmmp.h> +#endif #include "udisks2device.h" UDisks2Device::UDisks2Device(QDBusObjectPath o, QObject *parent) : QObject(parent) |
