mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-21 09:53:50 +00:00
Fix dangling model pointer after reference cleanup (Fixes #1653)
This commit is contained in:
parent
f31a5490f3
commit
6cd739678a
3 changed files with 6 additions and 0 deletions
|
@ -157,6 +157,8 @@ void CompanionWindow::resetReference()
|
|||
{
|
||||
ReferenceInterface::resetReference();
|
||||
mItemView->setModel(NULL);
|
||||
mModel = NULL;
|
||||
mSortModel = NULL;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -262,6 +262,8 @@ namespace MWGui
|
|||
{
|
||||
ReferenceInterface::resetReference();
|
||||
mItemView->setModel(NULL);
|
||||
mModel = NULL;
|
||||
mSortModel = NULL;
|
||||
}
|
||||
|
||||
void ContainerWindow::close()
|
||||
|
|
|
@ -536,5 +536,7 @@ namespace MWGui
|
|||
{
|
||||
ReferenceInterface::resetReference();
|
||||
mItemView->setModel(NULL);
|
||||
mTradeModel = NULL;
|
||||
mSortModel = NULL;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue