##// 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 904 void PythonQt::setImporter(PythonQtImportFileInterface* importInterface)
905 905 {
906 PythonQtImport::init();
907 906 _p->_importInterface = importInterface;
907 PythonQtImport::init();
908 908 }
909 909
910 910 void PythonQt::setImporterIgnorePaths(const QStringList& paths)
General Comments 0
You need to be logged in to leave comments. Login now