call InitCommonControls if no display has been created prior to Alert

This commit is contained in:
Brian Matzon 2009-12-02 23:11:14 +00:00
parent 2e07a03a4e
commit 63ed7b268e
2 changed files with 9 additions and 0 deletions

View file

@ -94,9 +94,13 @@ final class WindowsSysImplementation extends DefaultSysImplementation {
}
public void alert(String title, String message) {
if(!Display.isCreated()) {
initCommonControls();
}
nAlert(getHwnd(), title, message);
}
private static native void nAlert(long parent_hwnd, String title, String message);
private static native void initCommonControls();
public boolean openURL(final String url) {
try {