1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-19 04:11:46 +02:00

Use nullptr instead of 0

This commit is contained in:
Uwe L. Korn
2014-10-27 20:58:07 +01:00
parent d6f2172e8c
commit a408a3ac38

View File

@@ -90,7 +90,7 @@ JSResolver::~JSResolver()
Tomahawk::ExternalResolver* JSResolver::factory( const QString& accountId, const QString& scriptPath, const QStringList& additionalScriptPaths )
{
ExternalResolver* res = 0;
ExternalResolver* res = nullptr;
const QFileInfo fi( scriptPath );
if ( fi.suffix() == "js" || fi.suffix() == "script" )