Fixed trying to illegally cast NULL (nullptr in C++14) to void*.

This commit is contained in:
binary1248 2017-03-18 14:53:45 +01:00
parent 6d76b65fcf
commit 686d0fa76c

View file

@ -1275,7 +1275,7 @@ void WindowImplX11::initialize()
m_window,
XNInputStyle,
XIMPreeditNothing | XIMStatusNothing,
reinterpret_cast<void*>(NULL));
NULL);
}
else
{