Mercurial > pidgin
changeset 6356:ee0044f3e377
[gaim-migrate @ 6855]
Fixed a wrong data type.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Sat, 02 Aug 2003 09:02:22 +0000 |
parents | 19ceb5d78ce1 |
children | 1fa4410d2e13 |
files | src/notify.c src/notify.h |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/notify.c Sat Aug 02 05:22:52 2003 +0000 +++ b/src/notify.c Sat Aug 02 09:02:22 2003 +0000 @@ -34,7 +34,7 @@ } GaimNotifyInfo; void * -gaim_notify_message(void *handle, GaimNotifyType type, +gaim_notify_message(void *handle, GaimNotifyMsgType type, const char *title, const char *primary, const char *secondary, GCallback cb, void *user_data) {
--- a/src/notify.h Sat Aug 02 05:22:52 2003 +0000 +++ b/src/notify.h Sat Aug 02 09:02:22 2003 +0000 @@ -93,7 +93,7 @@ * * @return A UI-specific handle. */ -void *gaim_notify_message(void *handle, GaimNotifyType type, +void *gaim_notify_message(void *handle, GaimNotifyMsgType type, const char *title, const char *primary, const char *secondary, GCallback cb, void *user_data);