NOISSUE rename QObjectPtr to shared_qobject_ptr, introduce unique_qobject_ptr, refactor MainWindow to match

This commit is contained in:
Petr Mrázek
2015-10-20 17:18:53 +02:00
parent 9ad99ac481
commit 125abf5027
9 changed files with 170 additions and 216 deletions

View File

@ -70,5 +70,5 @@ private:
Ui::InstanceSettingsPage *ui;
BaseInstance *m_instance;
SettingsObjectPtr m_settings;
QObjectPtr<JavaCommon::TestCheck> checker;
unique_qobject_ptr<JavaCommon::TestCheck> checker;
};

View File

@ -68,5 +68,5 @@ slots:
private:
Ui::JavaPage *ui;
QObjectPtr<JavaCommon::TestCheck> checker;
unique_qobject_ptr<JavaCommon::TestCheck> checker;
};