diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2010-10-05 01:44:25 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2010-10-05 01:44:25 +0200 |
commit | 2444ac841fad00133f231e9667ab427c4ce4d39e (patch) | |
tree | f85d6a82d7aed6aa4d758fc3045858ec8f4452bc /src/gui/Conversation.vala | |
parent | cabc0995c0e0964ecbef18470c6a483022879071 (diff) | |
download | ephraim-2444ac841fad00133f231e9667ab427c4ce4d39e.tar ephraim-2444ac841fad00133f231e9667ab427c4ce4d39e.zip |
Receiving messages works again (kinda)
Diffstat (limited to 'src/gui/Conversation.vala')
-rw-r--r-- | src/gui/Conversation.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/Conversation.vala b/src/gui/Conversation.vala index 7c8dc03..926ed3d 100644 --- a/src/gui/Conversation.vala +++ b/src/gui/Conversation.vala @@ -62,7 +62,7 @@ public class Conversation { conversations.remove(widget); } - public void chat_message(string type, string from, string message) { + public void chat_message(string from, string type, string message) { if(type != "chat") return; |