Fixed trying to illegally cast NULL (nullptr in C++14) to void*.
This commit is contained in:
parent
6d76b65fcf
commit
686d0fa76c
|
@ -1275,7 +1275,7 @@ void WindowImplX11::initialize()
|
|||
m_window,
|
||||
XNInputStyle,
|
||||
XIMPreeditNothing | XIMStatusNothing,
|
||||
reinterpret_cast<void*>(NULL));
|
||||
NULL);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue