mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-23 20:09:43 +00:00
fix uninitialized pointer variable in CSVDoc::SubView class
This commit is contained in:
parent
4d62541b62
commit
46496a35a1
1 changed files with 2 additions and 1 deletions
|
@ -2,7 +2,8 @@
|
||||||
|
|
||||||
#include "view.hpp"
|
#include "view.hpp"
|
||||||
|
|
||||||
CSVDoc::SubView::SubView (const CSMWorld::UniversalId& id) : mUniversalId (id)
|
CSVDoc::SubView::SubView (const CSMWorld::UniversalId& id)
|
||||||
|
: mUniversalId (id), mParent (NULL)
|
||||||
{
|
{
|
||||||
/// \todo add a button to the title bar that clones this sub view
|
/// \todo add a button to the title bar that clones this sub view
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue