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 {

View File

@ -44,6 +44,7 @@
#include "org_lwjgl_WindowsSysImplementation.h"
#include "common_tools.h"
#include <malloc.h>
#include <commctrl.h>
JNIEXPORT jlong JNICALL Java_org_lwjgl_WindowsSysImplementation_nGetTime(JNIEnv * env, jclass unused) {
DWORD time;
@ -67,6 +68,10 @@ JNIEXPORT void JNICALL Java_org_lwjgl_WindowsSysImplementation_nAlert(JNIEnv * e
free(cTitleBarText);
}
JNIEXPORT void JNICALL Java_org_lwjgl_WindowsSysImplementation_initCommonControls(JNIEnv * env, jclass unused) {
InitCommonControls();
}
JNIEXPORT jstring JNICALL Java_org_lwjgl_WindowsSysImplementation_nGetClipboard
(JNIEnv * env, jclass unused)
{