Replace GtkObject with Gobject in gtk+2 build
This commit is contained in:
@@ -109,11 +109,7 @@ static guint signals [LAST_SIGNAL] = { 0 };
|
||||
G_DEFINE_TYPE(PlumaSpellCheckerDialog, pluma_spell_checker_dialog, GTK_TYPE_WINDOW)
|
||||
|
||||
static void
|
||||
#if GTK_CHECK_VERSION (3, 0,0)
|
||||
pluma_spell_checker_dialog_dispose (GObject *object)
|
||||
#else
|
||||
pluma_spell_checker_dialog_destroy (GtkObject *object)
|
||||
#endif
|
||||
{
|
||||
PlumaSpellCheckerDialog *dlg = PLUMA_SPELL_CHECKER_DIALOG (object);
|
||||
|
||||
@@ -129,11 +125,7 @@ pluma_spell_checker_dialog_destroy (GtkObject *object)
|
||||
dlg->misspelled_word = NULL;
|
||||
}
|
||||
|
||||
#if GTK_CHECK_VERSION (3, 0,0)
|
||||
G_OBJECT_CLASS (pluma_spell_checker_dialog_parent_class)->dispose (object);
|
||||
#else
|
||||
GTK_OBJECT_CLASS (pluma_spell_checker_dialog_parent_class)->destroy (object);
|
||||
#endif
|
||||
}
|
||||
|
||||
static void
|
||||
@@ -143,11 +135,7 @@ pluma_spell_checker_dialog_class_init (PlumaSpellCheckerDialogClass * klass)
|
||||
|
||||
object_class = G_OBJECT_CLASS (klass);
|
||||
|
||||
#if GTK_CHECK_VERSION (3, 0, 0)
|
||||
object_class->dispose = pluma_spell_checker_dialog_dispose;
|
||||
#else
|
||||
GTK_OBJECT_CLASS (object_class)->destroy = pluma_spell_checker_dialog_destroy;
|
||||
#endif
|
||||
|
||||
signals[IGNORE] =
|
||||
g_signal_new ("ignore",
|
||||
|
Reference in New Issue
Block a user