1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-06-19 14:11:33 +00:00

Fix: initialize boolean field with boolean value, not NULL

This commit is contained in:
Nikolay Kasyanov 2014-10-11 10:07:01 +04:00
parent 21b16f8425
commit 138e3032ce

View file

@ -34,7 +34,7 @@ namespace MWGui
, mSourceModel(NULL)
, mSourceView(NULL)
, mSourceSortModel(NULL)
, mIsOnDragAndDrop(NULL)
, mIsOnDragAndDrop(false)
{
}