diff src/notify.h @ 11533:c9b815aeddc1

[gaim-migrate @ 13782] Pushing more of the userinfo stuff to the UI. Also, fixed a notify API warning in the perl plugin. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Mon, 12 Sep 2005 20:04:37 +0000
parents bf763a1b2454
children 216988c717da
line wrap: on
line diff
--- a/src/notify.h	Mon Sep 12 18:52:53 2005 +0000
+++ b/src/notify.h	Mon Sep 12 20:04:37 2005 +0000
@@ -126,8 +126,7 @@
 										  GaimNotifySearchResults *results,
 										  void *data, void *user_data);
 	void *(*notify_userinfo)(GaimConnection *gc, const char *who,
-							  const char *title, const char *primary,
-							  const char *secondary, const char *text,
+							  const char *text,
 							  GCallback cb, void *user_data);
 	void *(*notify_uri)(const char *uri);
 
@@ -360,10 +359,8 @@
  * The text is essentially a stripped-down format of HTML, the same that
  * IMs may send.
  *
- * @param gc		The GaimConnection handle associated with the information.
- * @param who		The username associated with the information.
- * @param primary   The main point of the message.
- * @param secondary The secondary information.
+ * @param gc	    The GaimConnection handle associated with the information.
+ * @param who	    The username associated with the information.
  * @param text      The formatted text.
  * @param cb        The callback to call when the user closes
  *                  the notification.
@@ -372,7 +369,6 @@
  * @return A UI-specific handle.
  */
 void *gaim_notify_userinfo(GaimConnection *gc, const char *who,
-						   const char *primary, const char *secondary,
 						   const char *text, GCallback cb,
 						   void *user_data);