[multiple changes]
2004-06-27 Mark Wielaard <mark@klomp.org> * java/awt/EventQueue.java (postEvent): Throw NullPointerException when argument is null. 2004-06-26 Mark Wielaard <mark@klomp.org> * native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkFileDialogPeer.c (ok_clicked): Use Ljava/lang/String; not Ljava.lang.String; in JNI GetMethodID call. (cancel_clicked): Likewise. From-SVN: r83731
This commit is contained in:
parent
093ff71e71
commit
66a74d2a07
3 changed files with 17 additions and 2 deletions
|
@ -161,6 +161,9 @@ public class EventQueue
|
|||
*/
|
||||
public synchronized void postEvent(AWTEvent evt)
|
||||
{
|
||||
if (evt == null)
|
||||
throw new NullPointerException();
|
||||
|
||||
if (next != null)
|
||||
{
|
||||
next.postEvent(evt);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue