forked from qt-creator/qt-creator
Plugins: Code cosmetics
Get closer to a uniform pattern of code layout (public/private, pimpl naming...) Change-Id: If2bc6dcee3df9127274f479b4ebc270d283dcb65 Reviewed-by: Xing Xiong Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -29,16 +29,12 @@
|
||||
|
||||
namespace Android {
|
||||
namespace Internal {
|
||||
class AndroidPluginPrivate;
|
||||
|
||||
class AndroidPlugin : public ExtensionSystem::IPlugin
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "Android.json")
|
||||
|
||||
public:
|
||||
AndroidPlugin() = default;
|
||||
|
||||
private:
|
||||
~AndroidPlugin() final;
|
||||
|
||||
bool initialize(const QStringList &arguments, QString *errorMessage) final;
|
||||
@@ -46,7 +42,7 @@ private:
|
||||
|
||||
void kitsRestored();
|
||||
|
||||
AndroidPluginPrivate *d = nullptr;
|
||||
class AndroidPluginPrivate *d = nullptr;
|
||||
};
|
||||
|
||||
} // namespace Internal
|
||||
|
||||
Reference in New Issue
Block a user