From 93fd8e08ea6ad6288972ae960ccaca01d1d5474a Mon Sep 17 00:00:00 2001
From: Yann Leboulanger <asterix@lagaule.org>
Date: Wed, 8 Jun 2005 10:02:50 +0000
Subject: [PATCH] replace Queues with list

---
 src/roster_window.py      | 5 ++---
 src/tabbed_chat_window.py | 7 +++----
 2 files changed, 5 insertions(+), 7 deletions(-)

diff --git a/src/roster_window.py b/src/roster_window.py
index 080e60cfa0..b688569ff6 100644
--- a/src/roster_window.py
+++ b/src/roster_window.py
@@ -23,7 +23,6 @@
 import gobject
 import os
 import time
-import Queue
 import common.sleepy
 
 import tabbed_chat_window
@@ -1003,8 +1002,8 @@ def on_message(self, jid, msg, tim, account, encrypted = False):
 			return
 		#We save it in a queue
 		if not self.plugin.queues[account].has_key(jid):
-			self.plugin.queues[account][jid] = Queue.Queue(50)
-		self.plugin.queues[account][jid].put((msg, tim, encrypted))
+			self.plugin.queues[account][jid] = []
+		self.plugin.queues[account][jid].append((msg, tim, encrypted))
 		self.nb_unread += 1
 		if (not autopopup or ( not autopopupaway and \
 			gajim.connections[account].connected > 2)) and not \
diff --git a/src/tabbed_chat_window.py b/src/tabbed_chat_window.py
index 243f98f83a..510c0c4113 100644
--- a/src/tabbed_chat_window.py
+++ b/src/tabbed_chat_window.py
@@ -324,10 +324,9 @@ def on_contact_button_clicked(self, widget):
 
 	def read_queue(self, jid):
 		"""read queue and print messages containted in it"""
-		q = self.plugin.queues[self.account][jid]
+		l = self.plugin.queues[self.account][jid]
 		user = self.users[jid]
-		while not q.empty():
-			event = q.get()
+		for event in l:
 			self.print_conversation(event[0], jid, tim = event[1],
 				encrypted = event[2])
 			self.plugin.roster.nb_unread -= 1
@@ -390,7 +389,7 @@ def restore_conversation(self, jid):
 
 
 		if self.plugin.queues[self.account].has_key(jid):
-			pos = self.plugin.queues[self.account][jid].qsize()
+			pos = len(self.plugin.queues[self.account][jid])
 		else:
 			pos = 0
 
-- 
GitLab