Mercurial > pidgin
comparison src/away.c @ 5676:dae79aefac8d
[gaim-migrate @ 6094]
I've been meaning to do this for a LONG time. The conversation API now
follows the naming convention of the rest of the new APIs. I'll get some
g_return_*_if_fail() checks in there soon.
committer: Tailor Script <tailor@pidgin.im>
| author | Christian Hammond <chipx86@chipx86.com> |
|---|---|
| date | Mon, 02 Jun 2003 21:51:06 +0000 |
| parents | b07aa997ddd8 |
| children | 059d95c67cda |
comparison
equal
deleted
inserted
replaced
| 5675:17e345ffeddb | 5676:dae79aefac8d |
|---|---|
| 60 | 60 |
| 61 static void dequeue_message(GtkTreeIter *iter) | 61 static void dequeue_message(GtkTreeIter *iter) |
| 62 { | 62 { |
| 63 gchar *name; | 63 gchar *name; |
| 64 GSList *templist; | 64 GSList *templist; |
| 65 struct gaim_conversation *cnv; | 65 GaimConversation *cnv; |
| 66 | 66 |
| 67 gtk_tree_model_get(GTK_TREE_MODEL(awayqueuestore), iter, 0, &name, -1); | 67 gtk_tree_model_get(GTK_TREE_MODEL(awayqueuestore), iter, 0, &name, -1); |
| 68 | 68 |
| 69 gaim_debug(GAIM_DEBUG_INFO, "away", "Unqueueing messages from %s.\n", | 69 gaim_debug(GAIM_DEBUG_INFO, "away", "Unqueueing messages from %s.\n", |
| 70 name); | 70 name); |
| 107 | 107 |
| 108 void purge_away_queue(GSList **queue) | 108 void purge_away_queue(GSList **queue) |
| 109 { | 109 { |
| 110 GSList *q = *queue; | 110 GSList *q = *queue; |
| 111 struct queued_message *qm; | 111 struct queued_message *qm; |
| 112 struct gaim_conversation *cnv; | 112 GaimConversation *cnv; |
| 113 GaimAccount *account; | 113 GaimAccount *account; |
| 114 | 114 |
| 115 while (q) { | 115 while (q) { |
| 116 qm = q->data; | 116 qm = q->data; |
| 117 | 117 |
