mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-21 13:10:19 +00:00
Added GTK2/GTK3-conditional declarations and definitions for sexy_spell_entry_editable_init to match the appropriate editable interface type.
This commit is contained in:
@@ -107,7 +107,12 @@ struct _SexySpellEntryPriv
|
|||||||
};
|
};
|
||||||
|
|
||||||
static void sexy_spell_entry_class_init(SexySpellEntryClass *klass);
|
static void sexy_spell_entry_class_init(SexySpellEntryClass *klass);
|
||||||
|
#if HAVE_GTK3
|
||||||
|
static void sexy_spell_entry_editable_init (GtkEditableInterface *iface);
|
||||||
|
#endif
|
||||||
|
#if !HAVE_GTK3
|
||||||
static void sexy_spell_entry_editable_init (GtkEditableClass *iface);
|
static void sexy_spell_entry_editable_init (GtkEditableClass *iface);
|
||||||
|
#endif
|
||||||
static void sexy_spell_entry_init(SexySpellEntry *entry);
|
static void sexy_spell_entry_init(SexySpellEntry *entry);
|
||||||
static void sexy_spell_entry_finalize(GObject *obj);
|
static void sexy_spell_entry_finalize(GObject *obj);
|
||||||
static void sexy_spell_entry_destroy(GObject *obj);
|
static void sexy_spell_entry_destroy(GObject *obj);
|
||||||
@@ -286,10 +291,19 @@ sexy_spell_entry_class_init(SexySpellEntryClass *klass)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if HAVE_GTK3
|
||||||
|
static void
|
||||||
|
sexy_spell_entry_editable_init (GtkEditableInterface *iface)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !HAVE_GTK3
|
||||||
static void
|
static void
|
||||||
sexy_spell_entry_editable_init (GtkEditableClass *iface)
|
sexy_spell_entry_editable_init (GtkEditableClass *iface)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static gint
|
static gint
|
||||||
gtk_entry_find_position (GtkEntry *entry, gint x)
|
gtk_entry_find_position (GtkEntry *entry, gint x)
|
||||||
|
|||||||
Reference in New Issue
Block a user