forked from qt-creator/qt-creator
Python: Plugin code cosmetics
Use the common pattern for PythonEditorPluginPrivate. Change-Id: Icec8d975e0ab921be7121d123af4dddecd7d0384 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -37,10 +37,13 @@ class PythonEditorPlugin : public ExtensionSystem::IPlugin
|
||||
|
||||
public:
|
||||
PythonEditorPlugin() = default;
|
||||
~PythonEditorPlugin() override;
|
||||
~PythonEditorPlugin() final;
|
||||
|
||||
bool initialize(const QStringList &arguments, QString *errorMessage) override;
|
||||
void extensionsInitialized() override;
|
||||
private:
|
||||
bool initialize(const QStringList &arguments, QString *errorMessage) final;
|
||||
void extensionsInitialized() final;
|
||||
|
||||
class PythonEditorPluginPrivate *d = nullptr;
|
||||
};
|
||||
|
||||
} // namespace Internal
|
||||
|
||||
Reference in New Issue
Block a user