diff -r 5aed2d7b9176 -r c5dfa570daff pidgin/gtkpounce.h --- a/pidgin/gtkpounce.h Sun Oct 14 02:13:14 2007 +0000 +++ b/pidgin/gtkpounce.h Sun Oct 14 02:41:00 2007 +0000 @@ -34,16 +34,40 @@ * @param account The optional account to use. * @param name The optional name to pounce on. * @param cur_pounce The current buddy pounce, if editing an existing one. + * + * @deprecated Use pidgin_pounce_editor_show_with_parent() instead. */ void pidgin_pounce_editor_show(PurpleAccount *account, const char *name, PurplePounce *cur_pounce); /** + * Displays a New Buddy Pounce or Edit Buddy Pounce dialog. + * + * @param parent The parent window. + * @param account The optional account to use. + * @param name The optional name to pounce on. + * @param cur_pounce The current buddy pounce, if editing an existing one. + * + * @since 2.3.0 + */ +void pidgin_pounce_editor_show_with_parent(GtkWindow *parent, PurpleAccount *account, const char *name, + PurplePounce *cur_pounce); + +/** * Shows the pounces manager window. + * + * @deprecated Use pidgin_pounces_manager_show_with_parent() instead. */ void pidgin_pounces_manager_show(void); /** + * Shows the pounces manager window. + * + * @since 2.3.0 + */ +void pidgin_pounces_manager_show_with_parent(GtkWindow *parent); + +/** * Hides the pounces manager window. */ void pidgin_pounces_manager_hide(void);