diff -r 9bb1c7df26b4 -r dac80ad0de75 Project/IdlCompilerOptionsDialog.py --- a/Project/IdlCompilerOptionsDialog.py Sat Aug 04 15:39:15 2018 +0200 +++ b/Project/IdlCompilerOptionsDialog.py Sat Aug 04 15:47:11 2018 +0200 @@ -7,6 +7,8 @@ Module implementing a dialog to enter some IDL compiler options. """ +from __future__ import unicode_literals + from PyQt5.QtCore import pyqtSlot, Qt from PyQt5.QtWidgets import QDialog, QTreeWidgetItem, QInputDialog @@ -36,8 +38,8 @@ @type list of str @param undefinedNames list of undefined names @type list of str - @param projectDirectory directory name of the project - @type str + @param project reference to the project object + @type Project @param parent reference to the parent widget @type QWidget """