-
Notifications
You must be signed in to change notification settings - Fork 110
Open
Description
Getting this error on init: QMetaType::registerTypedef: -- Type name 'QObjectList' previously registered as typedef of 'QObjectList' [1032], now registering as typedef of 'QList ' [1074]. because I have a project that still has bits of QtScript and pythonqt at the same time.
From qscriptengine.cpp
QScriptEnginePrivate::QScriptEnginePrivate()
: originalGlobalObjectProxy(0), currentFrame(0),
qobjectPrototype(0), qmetaobjectPrototype(0), variantPrototype(0),
activeAgent(0), agentLineNumber(-1),
registeredScriptValues(0), freeScriptValues(0), freeScriptValuesCount(0),
registeredScriptStrings(0), processEventsInterval(-1), inEval(false),
uncaughtExceptionLineNumber(-1)
{
qMetaTypeId<QScriptValue>();
qMetaTypeId<QList<int> >();
#ifndef QT_NO_QOBJECT
qMetaTypeId<QObjectList>();
#endifand
Line 124 in f63bee1
| qRegisterMetaType<QObjectList>("QObjectList"); |
Metadata
Metadata
Assignees
Labels
No labels