diff src/gaim.h @ 5136:381da05cb5ed

[gaim-migrate @ 5500] this started out as simply adding an option to right-click on a jabber buddy and re-request authorization. Then I ended up chasing the disgusting mess of const vs non-const parameters all over gaim. The end result is that you can now right-click on jabber buddies and re-request auth like you can for ICQ. Also, a lot more things are const that should be, I fixed a bug or two, and I cleaned up one of my least favorite functions in gaim (linkify_text). It is now decidedly less evil. committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Tue, 15 Apr 2003 04:18:00 +0000
parents 496ea7c1b77b
children 0241d6b6702d
line wrap: on
line diff
--- a/src/gaim.h	Tue Apr 15 03:45:31 2003 +0000
+++ b/src/gaim.h	Tue Apr 15 04:18:00 2003 +0000
@@ -349,7 +349,7 @@
 #endif
 
 /* Functions in dialogs.c */
-extern void g_show_info_text(struct gaim_connection *, char *, int, char *, ...);
+extern void g_show_info_text(struct gaim_connection *, const char *, int, const char *, ...);
 extern GtkWidget *do_error_dialog(const char *, const char *, int type);
 extern void show_change_passwd(struct gaim_connection *);
 extern void show_set_dir(struct gaim_connection *);
@@ -412,7 +412,7 @@
 extern void serv_chat_whisper(struct gaim_connection *, int, char *, char *);
 extern int  serv_chat_send(struct gaim_connection *, int, char *);
 extern void serv_got_popup(char *, char *, int, int);
-extern void serv_get_away(struct gaim_connection *, char *);
+extern void serv_get_away(struct gaim_connection *, const char *);
 extern void serv_alias_buddy(struct buddy *);
 extern void serv_move_buddy(struct buddy *, struct group *, struct group *);
 extern void serv_rename_group(struct gaim_connection *, struct group *, const char *);