summaryrefslogtreecommitdiff
path: root/pidgin/gtkconv.h
diff options
context:
space:
mode:
authorAnkit Vani <a@nevitus.org>2013-09-25 19:25:42 +0530
committerAnkit Vani <a@nevitus.org>2013-09-25 19:25:42 +0530
commitabe80629c7ece37563e3b51f2c24380a16543020 (patch)
treee29393a63c9cb25cd6cd88b05d05a5be6e62885d /pidgin/gtkconv.h
parent81a7892bdb688d9e9e66cdb4eeb8d2c19d494f55 (diff)
downloadpidgin-abe80629c7ece37563e3b51f2c24380a16543020.tar.gz
Removed nested structs in pidgin - this caused an error in g-ir-compiler
Diffstat (limited to 'pidgin/gtkconv.h')
-rw-r--r--pidgin/gtkconv.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/pidgin/gtkconv.h b/pidgin/gtkconv.h
index 94d09bca4e..34af58a652 100644
--- a/pidgin/gtkconv.h
+++ b/pidgin/gtkconv.h
@@ -136,18 +136,14 @@ struct _PidginConversation
/* Used when attaching a PidginConversation to a PurpleConversation
* with message history */
- struct {
- int timer;
- GList *current;
- } attach;
+ int attach_timer;
+ GList *attach_current;
/**
* Quick Find.
*/
- struct {
- GtkWidget *entry;
- GtkWidget *container;
- } quickfind;
+ GtkWidget *quickfind_entry;
+ GtkWidget *quickfind_container;
};
/*@}*/