# HG changeset patch # User Christian Hammond # Date 1059814942 0 # Node ID ee0044f3e3775da5345fee5e1de836e06a9aeeb7 # Parent 19ceb5d78ce10e585f504eb2e1680a6c9ad12ee3 [gaim-migrate @ 6855] Fixed a wrong data type. committer: Tailor Script diff -r 19ceb5d78ce1 -r ee0044f3e377 src/notify.c --- 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) { diff -r 19ceb5d78ce1 -r ee0044f3e377 src/notify.h --- 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);