aboutsummaryrefslogtreecommitdiff
path: root/src/IvyApplicationAdapter.java
diff options
context:
space:
mode:
authorjestin2002-06-07 11:18:02 +0000
committerjestin2002-06-07 11:18:02 +0000
commitbe2d18b332eb74b6529e18a8f10abf71fcd7382a (patch)
tree66a3cd8752422dc63ee5ddfeb781c11ec4879212 /src/IvyApplicationAdapter.java
parent56bad1fac964a8562ef46fa995766e9e28173dc5 (diff)
downloadivy-java-be2d18b332eb74b6529e18a8f10abf71fcd7382a.zip
ivy-java-be2d18b332eb74b6529e18a8f10abf71fcd7382a.tar.gz
ivy-java-be2d18b332eb74b6529e18a8f10abf71fcd7382a.tar.bz2
ivy-java-be2d18b332eb74b6529e18a8f10abf71fcd7382a.tar.xz
doc change for the new release
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 ) {}
}