1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-24 01:39:42 +01: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 )
{
#if QT_VERSION >= QT_VERSION_CHECK( 5, 0, 0 )
return QUrlQuery( url ).queryItemValue( key ).replace( "+", " " )
return QUrlQuery( url ).queryItemValue( key ).replace( "+", " " );
#else
return url.queryItemValue( key ).replace( "+", " " );
#endif