34 |
34 |
35 @param plugin reference to the plugin object (TranslatorPlugin) |
35 @param plugin reference to the plugin object (TranslatorPlugin) |
36 @param parent reference to the parent object (QObject) |
36 @param parent reference to the parent object (QObject) |
37 """ |
37 """ |
38 super(MyMemoryEngine, self).__init__(plugin, parent) |
38 super(MyMemoryEngine, self).__init__(plugin, parent) |
|
39 |
|
40 QTimer.singleShot(0, self.availableTranslationsLoaded.emit) |
39 |
41 |
40 def engineName(self): |
42 def engineName(self): |
41 """ |
43 """ |
42 Public method to return the name of the engine. |
44 Public method to return the name of the engine. |
43 |
45 |