pidgin/pidgin

Set tooltips to be transient for the buddy list.

2019-11-03, Elliott Sales de Andrade
a46888708fd7
Set tooltips to be transient for the buddy list.

Without a proper transient parent, the tooltips cause the buddy list to
lose focus (temporarily) and GTK prints out a warning about parent-less
windows.
#ifndef PIDGIN_ABOUT_H
#define PIDGIN_ABOUT_H
/**
* SECTION:pidginabout
* @section_id: pidgin-about
* @short_description: <filename>pidginabout.h</filename>
* @title: About Dialog
*/
#include <gtk/gtk.h>
G_BEGIN_DECLS
#define PIDGIN_TYPE_ABOUT_DIALOG (pidgin_about_dialog_get_type())
G_DECLARE_FINAL_TYPE(PidginAboutDialog, pidgin_about_dialog, PIDGIN,
ABOUT_DIALOG, GtkDialog)
GtkWidget *pidgin_about_dialog_new(void);
G_END_DECLS
#endif /* PIDGIN_ABOUT_H */