blob: a97400e10a641e5aae1722963b1993969b332557 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
? 002_offline_event.patch
Index: iris/xmpp-im/types.cpp
===================================================================
RCS file: /home/kde/tdenetwork/kopete/protocols/jabber/libiris/iris/xmpp-im/types.cpp,v
retrieving revision 1.3
diff -u -p -r1.3 types.cpp
--- iris/xmpp-im/types.cpp 21 May 2004 14:35:44 -0000 1.3
+++ iris/xmpp-im/types.cpp 5 Feb 2005 21:04:44 -0000
@@ -639,6 +639,8 @@ bool Message::fromStanza(const Stanza &s
d->eventList += ComposingEvent;
else if (evtag == "delivered")
d->eventList += DeliveredEvent;
+ else if (evtag == "offline")
+ d->eventList += OfflineEvent;
}
if (d->eventList.isEmpty())
d->eventList += CancelEvent;
|