Mercurial > pidgin
diff plugins/timestamp.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 | 2c4c975620f0 |
| children | 059d95c67cda |
line wrap: on
line diff
--- a/plugins/timestamp.c Mon Jun 02 21:14:50 2003 +0000 +++ b/plugins/timestamp.c Mon Jun 02 21:51:06 2003 +0000 @@ -19,7 +19,7 @@ gboolean do_timestamp (gpointer data) { - struct gaim_conversation *c = (struct gaim_conversation *)data; + GaimConversation *c = (GaimConversation *)data; char *buf; char mdate[6]; time_t tim = time(NULL); @@ -36,7 +36,7 @@ void timestamp_new_convo(char *name) { - struct gaim_conversation *c = gaim_find_conversation(name); + GaimConversation *c = gaim_find_conversation(name); do_timestamp(c); timestamp_timeouts = g_slist_append(timestamp_timeouts, @@ -101,7 +101,7 @@ plugin_load(GaimPlugin *plugin) { GList *cnvs; - struct gaim_conversation *c; + GaimConversation *c; for (cnvs = gaim_get_conversations(); cnvs != NULL; cnvs = cnvs->next) { c = cnvs->data;
