diff options
author | Milan Crha <mcrha@redhat.com> | 2010-10-07 01:26:08 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2010-10-07 01:26:08 +0800 |
commit | 1c6f2d154e74f908e2c4a137de0233b5faf4f6b6 (patch) | |
tree | 77a33236e48ed59a7c7c65e8a1c91481dd09f3eb /e-util | |
parent | 1b2fefb086c3e34089beb8b89b22d79005cc7725 (diff) | |
download | gsoc2013-evolution-1c6f2d154e74f908e2c4a137de0233b5faf4f6b6.tar.gz gsoc2013-evolution-1c6f2d154e74f908e2c4a137de0233b5faf4f6b6.tar.zst gsoc2013-evolution-1c6f2d154e74f908e2c4a137de0233b5faf4f6b6.zip |
Bug #631320 - GtkObject is gone in GTK3
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/e-categories-config.c | 2 | ||||
-rw-r--r-- | e-util/e-text-event-processor.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/e-util/e-categories-config.c b/e-util/e-categories-config.c index be169f7284..44d5dc2c6c 100644 --- a/e-util/e-categories-config.c +++ b/e-util/e-categories-config.c @@ -128,5 +128,5 @@ e_categories_config_open_dialog_for_entry (GtkEntry *entry) gtk_entry_set_text (GTK_ENTRY (entry), text); } - gtk_object_destroy (GTK_OBJECT (dialog)); + gtk_widget_destroy (GTK_WIDGET (dialog)); } diff --git a/e-util/e-text-event-processor.h b/e-util/e-text-event-processor.h index 9e02cb050e..cf14ebb286 100644 --- a/e-util/e-text-event-processor.h +++ b/e-util/e-text-event-processor.h @@ -51,7 +51,7 @@ struct _ETextEventProcessor struct _ETextEventProcessorClass { - GtkObjectClass parent_class; + GObjectClass parent_class; /* signals */ void (* command) (ETextEventProcessor *tep, ETextEventProcessorCommand *command); |