##// END OF EJS Templates
fixed initialization order, the importer needs to be store BEFORE the import module is initialized...
florianlink -
r84:8f25be796564
parent child
Show More
@@ -903,8 +903,8 void PythonQt::registerQObjectClassNames(const QStringList& names)
903
903
904 void PythonQt::setImporter(PythonQtImportFileInterface* importInterface)
904 void PythonQt::setImporter(PythonQtImportFileInterface* importInterface)
905 {
905 {
906 PythonQtImport::init();
907 _p->_importInterface = importInterface;
906 _p->_importInterface = importInterface;
907 PythonQtImport::init();
908 }
908 }
909
909
910 void PythonQt::setImporterIgnorePaths(const QStringList& paths)
910 void PythonQt::setImporterIgnorePaths(const QStringList& paths)
General Comments 0
You need to be logged in to leave comments. Login now