mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-14 10:05:32 +02:00
Fix: comparison between signed and unsigned integer
This commit is contained in:
@@ -246,7 +246,7 @@ XSPFLoader::gotBody()
|
|||||||
m_title = m_overrideTitle;
|
m_title = m_overrideTitle;
|
||||||
|
|
||||||
bool shownError = false;
|
bool shownError = false;
|
||||||
for ( unsigned int i = 0; i < tracklist.length(); i++ )
|
for ( int i = 0; i < tracklist.length(); i++ )
|
||||||
{
|
{
|
||||||
QDomNode e = tracklist.at( i );
|
QDomNode e = tracklist.at( i );
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user