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,
|
m_window,
|
||||||
XNInputStyle,
|
XNInputStyle,
|
||||||
XIMPreeditNothing | XIMStatusNothing,
|
XIMPreeditNothing | XIMStatusNothing,
|
||||||
reinterpret_cast<void*>(NULL));
|
NULL);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue