1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-06 14:16:32 +02:00

qt5: fix typo

This commit is contained in:
Dominik Schmidt
2013-01-05 22:45:41 +01:00
parent 248565fc6d
commit 4d693cf4c9

View File

@@ -1013,7 +1013,7 @@ QString
urlQueryItemValue( const QUrl& url, const QString& key ) urlQueryItemValue( const QUrl& url, const QString& key )
{ {
#if QT_VERSION >= QT_VERSION_CHECK( 5, 0, 0 ) #if QT_VERSION >= QT_VERSION_CHECK( 5, 0, 0 )
return QUrlQuery( url ).queryItemValue( key ).replace( "+", " " ) return QUrlQuery( url ).queryItemValue( key ).replace( "+", " " );
#else #else
return url.queryItemValue( key ).replace( "+", " " ); return url.queryItemValue( key ).replace( "+", " " );
#endif #endif