Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2007-04-17 17:01:56 +0000
committerslewis2007-04-17 17:01:56 +0000
commit87f962e5f4f46082118101af20a9b575711a5e6b (patch)
tree5bfca4aba5bfcbac27bfcb6e0a8bbdd77d033895
parent4a4fb3885ff89e1697a8dbf43bc90cb12bf45bff (diff)
downloadorg.eclipse.ecf-87f962e5f4f46082118101af20a9b575711a5e6b.tar.gz
org.eclipse.ecf-87f962e5f4f46082118101af20a9b575711a5e6b.tar.xz
org.eclipse.ecf-87f962e5f4f46082118101af20a9b575711a5e6b.zip
Simplified presence API and changed existing impls to match
-rw-r--r--examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/ChatRoomManagerUI.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/ChatRoomManagerUI.java b/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/ChatRoomManagerUI.java
index d1c41810a..04af64d7b 100644
--- a/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/ChatRoomManagerUI.java
+++ b/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/ChatRoomManagerUI.java
@@ -84,7 +84,7 @@ public class ChatRoomManagerUI {
}
});
chatRoom.addChatRoomParticipantListener(new IChatRoomParticipantListener() {
- public void handlePresence(ID fromID, IPresence presence) {
+ public void handlePresenceUpdated(ID fromID, IPresence presence) {
chatroomview.handlePresence(fromID, presence);
}
public void handleArrived(IUser participant) {

Back to the top