diff options
| author | Roman Inflianskas <[email protected]> | 2018-03-03 20:39:43 +0300 |
|---|---|---|
| committer | Roman Inflianskas <[email protected]> | 2018-03-04 10:27:31 +0300 |
| commit | 533f050855a50212bba7be57a1590f9ce743e26d (patch) | |
| tree | 9bcbfe8f2814393b39b91a35a28ce8e9c729fe2f /src/panels | |
| parent | 848abc5922167a467bb73107ee6b72e9af3c8317 (diff) | |
Fix some compile warnings
Reviewers: #dolphin, markg
Reviewed By: markg
Subscribers: elvisangelaccio, #dolphin
Differential Revision: https://phabricator.kde.org/D10995
Diffstat (limited to 'src/panels')
| -rw-r--r-- | src/panels/information/phononwidget.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/panels/information/phononwidget.cpp b/src/panels/information/phononwidget.cpp index b8d3d6ef6..94523c40d 100644 --- a/src/panels/information/phononwidget.cpp +++ b/src/panels/information/phononwidget.cpp @@ -23,7 +23,10 @@ #include <Phonon/AudioOutput> #include <Phonon/MediaObject> #include <Phonon/SeekSlider> +#pragma GCC diagnostic push // Phonon doesn't use C++11 compiler by default, so override +#pragma GCC diagnostic ignored "-Wsuggest-override" // specifier is not available. Remove this pragmas after fixing it. #include <Phonon/VideoWidget> +#pragma GCC diagnostic pop #include <QVBoxLayout> #include <QShowEvent> |
