forked from qt-creator/qt-creator
CppTools: Use a normal plugin pimpl member for StringTable
Change-Id: I2804b623b7ec03f6f4375452c9a422604468aafa Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -111,12 +111,12 @@ void StringTable::scheduleGC()
|
||||
QMetaObject::invokeMethod(&m_instance->m_gcCountDown, "start", Qt::QueuedConnection);
|
||||
}
|
||||
|
||||
void StringTable::initialize()
|
||||
StringTable::StringTable()
|
||||
{
|
||||
m_instance = new StringTablePrivate;
|
||||
}
|
||||
|
||||
void StringTable::destroy()
|
||||
StringTable::~StringTable()
|
||||
{
|
||||
delete m_instance;
|
||||
m_instance = nullptr;
|
||||
|
||||
Reference in New Issue
Block a user