Avoid crash when wxGUIAppTraits::GetToolkitInfo is called too
early. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35027 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
d946915c20
commit
8da782ef64
@ -155,8 +155,11 @@ wxToolkitInfo& wxGUIAppTraits::GetToolkitInfo()
|
||||
// Motif version of the libs but the X protocol
|
||||
// version!
|
||||
Display *display = wxGlobalDisplay();
|
||||
info.versionMajor = ProtocolVersion (display);
|
||||
info.versionMinor = ProtocolRevision (display);
|
||||
if (display)
|
||||
{
|
||||
info.versionMajor = ProtocolVersion (display);
|
||||
info.versionMinor = ProtocolRevision (display);
|
||||
}
|
||||
info.os = wxMOTIF_X;
|
||||
return info;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user