43 Function to create the main widget. |
43 Function to create the main widget. |
44 |
44 |
45 @param argv list of commandline parameters (list of strings) |
45 @param argv list of commandline parameters (list of strings) |
46 @return reference to the main widget (QWidget) |
46 @return reference to the main widget (QWidget) |
47 """ |
47 """ |
48 from Plugins.WizardPlugins.QRegularExpressionWizard\ |
48 from Plugins.WizardPlugins.QRegularExpressionWizard import ( |
49 .QRegularExpressionWizardDialog import QRegularExpressionWizardWindow |
49 QRegularExpressionWizardDialog |
50 return QRegularExpressionWizardWindow() |
50 ) |
|
51 return QRegularExpressionWizardDialog.QRegularExpressionWizardWindow() |
51 |
52 |
52 |
53 |
53 def main(): |
54 def main(): |
54 """ |
55 """ |
55 Main entry point into the application. |
56 Main entry point into the application. |