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

Don't parent ScriptObject - it's tracked by a sharedptr.

This commit is contained in:
Christian Muehlhaeuser
2015-04-06 04:46:09 +02:00
parent 527277621b
commit 091d8697bc

View File

@@ -23,7 +23,7 @@
using namespace Tomahawk; using namespace Tomahawk;
ScriptObject::ScriptObject( const QString& id, ScriptAccount* parent ) ScriptObject::ScriptObject( const QString& id, ScriptAccount* parent )
: QObject( parent ) : QObject()
, d_ptr( new ScriptObjectPrivate( this, id, parent )) , d_ptr( new ScriptObjectPrivate( this, id, parent ))
{ {
} }