forked from qt-creator/qt-creator
TextEditor: Modernize
modernize-* Change-Id: Ic497fea1942a77cf017be3b0033f92e3807066f1 Reviewed-by: Orgad Shaneh <orgads@gmail.com> Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -50,14 +50,12 @@ namespace Internal {
|
||||
class CodeStylePoolPrivate
|
||||
{
|
||||
public:
|
||||
CodeStylePoolPrivate()
|
||||
: m_factory(nullptr)
|
||||
{}
|
||||
CodeStylePoolPrivate() = default;
|
||||
~CodeStylePoolPrivate();
|
||||
|
||||
QByteArray generateUniqueId(const QByteArray &id) const;
|
||||
|
||||
ICodeStylePreferencesFactory *m_factory;
|
||||
ICodeStylePreferencesFactory *m_factory = nullptr;
|
||||
QList<ICodeStylePreferences *> m_pool;
|
||||
QList<ICodeStylePreferences *> m_builtInPool;
|
||||
QList<ICodeStylePreferences *> m_customPool;
|
||||
|
||||
Reference in New Issue
Block a user