aboutsummaryrefslogtreecommitdiff
path: root/src/IvyApplicationAdapter.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/IvyApplicationAdapter.java')
-rwxr-xr-xsrc/IvyApplicationAdapter.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/IvyApplicationAdapter.java b/src/IvyApplicationAdapter.java
index af198dd..a07020f 100755
--- a/src/IvyApplicationAdapter.java
+++ b/src/IvyApplicationAdapter.java
@@ -13,11 +13,14 @@ package fr.dgac.ivy;
* convenience for implementing a subset of the methods of the
* applicationlistener. See the AWT 1.1 framework for further information on
* this.
+ *
+ * changelog:
+ * 1.0.12: fixed a missing id in the parameters
*/
public abstract class IvyApplicationAdapter implements IvyApplicationListener {
public void connect( IvyClient client ) { }
public void disconnect( IvyClient client ) { }
- public void die( IvyClient client ) { }
+ public void die( IvyClient client, int id ) { }
public void directMessage( IvyClient client, int id,String msgarg ) {}
}