@@ -386,8 +386,8 @@ void PythonQtTestSignalHandler::testSignalHandler()
386
386
QVERIFY (_helper->emitVariantSignal (12 ));
387
387
_helper->setExpectedVariant (QStringList () << " test1" << " test2" );
388
388
QVERIFY (_helper->emitVariantSignal (QStringList () << " test1" << " test2" ));
389
- _helper->setExpectedVariant (qVariantFromValue ((QObject*)_helper));
390
- QVERIFY (_helper->emitVariantSignal (qVariantFromValue ((QObject*)_helper)));
389
+ _helper->setExpectedVariant (QVariant::fromValue ((QObject*)_helper));
390
+ QVERIFY (_helper->emitVariantSignal (QVariant::fromValue ((QObject*)_helper)));
391
391
392
392
PyRun_SimpleString (" def testComplexSignal(a,b,l,o):\n if a==12 and b==13 and l==('test1','test2') and o == obj: obj.setPassed();\n " );
393
393
// intentionally not normalized signal:
@@ -497,7 +497,7 @@ void PythonQtTestApi::testCall()
497
497
QVERIFY (_helper->call (" testCall1" , QVariantList () << QVariant (" test" ), QVariant (QString (" test2" ))));
498
498
499
499
PyRun_SimpleString (" def testCall2(a, b):\n if a=='test' and b==obj: obj.setPassed();\n return obj;\n " );
500
- QVariant r = PythonQt::self ()->call (PythonQt::self ()->getMainModule (), " testCall2" , QVariantList () << QVariant (" test" ) << qVariantFromValue ((QObject*)_helper));
500
+ QVariant r = PythonQt::self ()->call (PythonQt::self ()->getMainModule (), " testCall2" , QVariantList () << QVariant (" test" ) << QVariant::fromValue ((QObject*)_helper));
501
501
QObject* p = qvariant_cast<QObject*>(r);
502
502
QVERIFY (p==_helper);
503
503
}
@@ -516,7 +516,7 @@ void PythonQtTestApi::testVariables()
516
516
QVariant v3 = PythonQt::self ()->getVariable (PythonQt::self ()->getMainModule (), " someValue" );
517
517
QVERIFY (v3 == QVariant (QStringList () << " test1" << " test2" ));
518
518
519
- QStringList l = PythonQt::self ()->introspection (PythonQt::self ()->getMainModule (), QString::null , PythonQt::Variable);
519
+ QStringList l = PythonQt::self ()->introspection (PythonQt::self ()->getMainModule (), QString () , PythonQt::Variable);
520
520
QSet<QString> s;
521
521
// check that at least these three variables are set
522
522
s << " obj" << " someObject" << " someValue" ;
0 commit comments