comparison src/away.c @ 1768:9aae465eeb6e

[gaim-migrate @ 1778] Start of the queueing stuff committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Sat, 28 Apr 2001 02:01:28 +0000
parents 004725b3a851
children 6d1d9e988fd4
comparison
equal deleted inserted replaced
1767:5461acb8940a 1768:9aae465eeb6e
53 53
54 void do_im_back(GtkWidget *w, GtkWidget *x) 54 void do_im_back(GtkWidget *w, GtkWidget *x)
55 { 55 {
56 if (imaway) { 56 if (imaway) {
57 GtkWidget *tmp = imaway; 57 GtkWidget *tmp = imaway;
58 /*GSList *templist = message_queue;
59
60 while (templist)
61 {
62 struct queued_message *qm = (struct queued_message *)templist->data;
63
64 free(qm->message);
65
66 message_queue = g_slist_remove(message_queue, qm);
67
68 free(qm);
69 }
70 */
71
58 imaway = NULL; 72 imaway = NULL;
59 gtk_widget_destroy(tmp); 73 gtk_widget_destroy(tmp);
60 if (w != tmp) 74 if (w != tmp)
61 return; 75 return;
62 } 76 }