forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
amarok-2.8.90-gcc6.patch
36 lines (30 loc) · 1.29 KB
/
amarok-2.8.90-gcc6.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
From 9308403e1c8484052f277bf6de32ee07c93a4beb Mon Sep 17 00:00:00 2001
From: Rex Dieter <[email protected]>
Date: Wed, 1 Jun 2016 13:58:26 -0500
Subject: [PATCH] gcc6 buildfix
courtesy of opensuse, thx
BUG: 363054
---
src/core-impl/playlists/types/file/xspf/XSPFPlaylist.cpp | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/core-impl/playlists/types/file/xspf/XSPFPlaylist.cpp b/src/core-impl/playlists/types/file/xspf/XSPFPlaylist.cpp
index 4bdb9b9..e327354 100644
--- a/src/core-impl/playlists/types/file/xspf/XSPFPlaylist.cpp
+++ b/src/core-impl/playlists/types/file/xspf/XSPFPlaylist.cpp
@@ -28,6 +28,7 @@
#include "playlist/PlaylistModelStack.h"
using namespace Playlists;
+using namespace Playlist;
XSPFPlaylist::XSPFPlaylist( const KUrl &url, Playlists::PlaylistProvider *provider, OnLoadAction onLoad )
: PlaylistFile( url, provider )
@@ -101,7 +102,7 @@ XSPFPlaylist::load()
//FIXME: this needs to be moved to whatever is creating the XSPFPlaylist
if( m_autoAppendAfterLoad )
The::playlistController()->insertPlaylist(
- ::Playlist::ModelStack::instance()->bottom()->rowCount(),
+ ModelStack::instance()->bottom()->rowCount(),
Playlists::PlaylistPtr( this )
);
}
--
2.8.3