Mercurial > pidgin.yaz
comparison pidgin/gtklog.h @ 21228:cc8bdfb16ddf
Document the window transient_for changes. Refs #2617
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Sat, 13 Oct 2007 23:59:52 +0000 |
parents | b84655373d7b |
children | 0b67d509a305 a051b177661e |
comparison
equal
deleted
inserted
replaced
21227:059d6deebee7 | 21228:cc8bdfb16ddf |
---|---|
50 char *search; /**< The string currently being searched for */ | 50 char *search; /**< The string currently being searched for */ |
51 GtkWidget *label; /**< The label at the top of the log viewer */ | 51 GtkWidget *label; /**< The label at the top of the log viewer */ |
52 }; | 52 }; |
53 | 53 |
54 | 54 |
55 /** | |
56 * @deprecated Use pidgin_log_show_with_parent() instead. | |
57 */ | |
58 void pidgin_log_show(PurpleLogType type, const char *screenname, PurpleAccount *account); | |
55 | 59 |
56 void pidgin_log_show(PurpleLogType type, const char *screenname, PurpleAccount *account); | 60 /** |
61 * @since 2.3.0 | |
62 */ | |
57 void pidgin_log_show_with_parent(GtkWindow *parent, PurpleLogType type, const char *screenname, PurpleAccount *account); | 63 void pidgin_log_show_with_parent(GtkWindow *parent, PurpleLogType type, const char *screenname, PurpleAccount *account); |
64 | |
65 /** | |
66 * @deprecated pidgin_log_show_contact_with_parent() instead. | |
67 */ | |
58 void pidgin_log_show_contact(PurpleContact *contact); | 68 void pidgin_log_show_contact(PurpleContact *contact); |
69 | |
70 /** | |
71 * @since 2.3.0 | |
72 */ | |
59 void pidgin_log_show_contact_with_parent(GtkWindow *parent, PurpleContact *contact); | 73 void pidgin_log_show_contact_with_parent(GtkWindow *parent, PurpleContact *contact); |
60 | 74 |
75 /** | |
76 * @deprecated Use pidgin_syslog_show_with_parent() instead. | |
77 */ | |
61 void pidgin_syslog_show(void); | 78 void pidgin_syslog_show(void); |
79 | |
80 /** | |
81 * @since 2.3.0 | |
82 */ | |
62 void pidgin_syslog_show_with_parent(GtkWindow *parent); | 83 void pidgin_syslog_show_with_parent(GtkWindow *parent); |
63 | 84 |
64 /**************************************************************************/ | 85 /**************************************************************************/ |
65 /** @name GTK+ Log Subsystem */ | 86 /** @name GTK+ Log Subsystem */ |
66 /**************************************************************************/ | 87 /**************************************************************************/ |