aboutsummaryrefslogtreecommitdiffstats
path: root/src/newt
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-04-24 12:22:07 +0200
committerSven Gothel <[email protected]>2011-04-24 12:22:07 +0200
commit668cd63f16abc9e7e9929d6bd1b786bf0664aace (patch)
tree55041145b4eb8165165b098dff34225cd50c48c8 /src/newt
parent6c0ad949be979d5fed95a1166d59100f7bf5580f (diff)
Misc cleanup, strings etc
Diffstat (limited to 'src/newt')
-rw-r--r--src/newt/native/NewtCommon.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/newt/native/NewtCommon.c b/src/newt/native/NewtCommon.c
index 0e3f99282..f44d71901 100644
--- a/src/newt/native/NewtCommon.c
+++ b/src/newt/native/NewtCommon.c
@@ -33,12 +33,12 @@ void NewtCommon_init(JNIEnv *env) {
if(NULL==runtimeExceptionClz) {
jclass c = (*env)->FindClass(env, ClazzNameRuntimeException);
if(NULL==c) {
- NewtCommon_FatalError(env, "NEWT X11Window: can't find %s", ClazzNameRuntimeException);
+ NewtCommon_FatalError(env, "NEWT: can't find %s", ClazzNameRuntimeException);
}
runtimeExceptionClz = (jclass)(*env)->NewGlobalRef(env, c);
(*env)->DeleteLocalRef(env, c);
if(NULL==runtimeExceptionClz) {
- NewtCommon_FatalError(env, "NEWT X11Window: can't use %s", ClazzNameRuntimeException);
+ NewtCommon_FatalError(env, "NEWT: can't use %s", ClazzNameRuntimeException);
}
}
}