Show
Ignore:
Timestamp:
08/31/07 19:22:58 (15 months ago)
Author:
asterix
Message:

[misc] repare sending composing chatstates using xep instead of xep. Fix #3241.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/gajim_0.11.1/src/message_control.py

    r7984 r8683  
    112112 
    113113        def send_message(self, message, keyID = '', type = 'chat', 
    114         chatstate = None, msg_id = None, composing_jep = None, resource = None, 
     114        chatstate = None, msg_id = None, composing_xep = None, resource = None, 
    115115        user_nick = None): 
    116116                '''Send the given message to the active tab. Doesn't return None if error 
     
    120120                return gajim.connections[self.account].send_message(jid, message, keyID, 
    121121                        type = type, chatstate = chatstate, msg_id = msg_id, 
    122                         composing_jep = composing_jep, resource = self.resource, 
     122                        composing_xep = composing_xep, resource = self.resource, 
    123123                        user_nick = user_nick)