comparison plugins/timestamp.c @ 4475:1f3241831734

[gaim-migrate @ 4750] Fixed the call to gaim_conversation_write(). committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Thu, 30 Jan 2003 18:38:34 +0000
parents 2c985a9e994c
children c7986b4d182a
comparison
equal deleted inserted replaced
4474:8fbf1c989f2b 4475:1f3241831734
29 if (!g_list_find(gaim_get_conversations(), c)) 29 if (!g_list_find(gaim_get_conversations(), c))
30 return FALSE; 30 return FALSE;
31 31
32 strftime(mdate, sizeof(mdate), "%H:%M", localtime(&tim)); 32 strftime(mdate, sizeof(mdate), "%H:%M", localtime(&tim));
33 buf = g_strdup_printf(" %s", mdate); 33 buf = g_strdup_printf(" %s", mdate);
34 gaim_conversation_write(c, NULL, buf, WFLAG_NOLOG, tim, -1); 34 gaim_conversation_write(c, NULL, buf, -1, WFLAG_NOLOG, tim);
35 g_free(buf); 35 g_free(buf);
36 return TRUE; 36 return TRUE;
37 } 37 }
38 38
39 void timestamp_new_convo(char *name) 39 void timestamp_new_convo(char *name)