From a7198290a40b97394e31c818d36168ceeb341345 Mon Sep 17 00:00:00 2001 From: Lionel Le Folgoc Date: Sun, 7 Mar 2010 18:14:09 +0100 Subject: [PATCH] Port to exo-1 Use g_object_ref_sink() instead of exo_gtk_object_ref_sink(). --- configure.in.in | 2 +- thunar-plugin/audio-tags-page.c | 2 +- thunar-plugin/tag-renamer.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.in.in b/configure.in.in index ed3099b..de3b280 100644 --- a/configure.in.in +++ b/configure.in.in @@ -64,7 +64,7 @@ XDT_I18N([@LINGUAS@]) dnl *********************************** dnl *** Check for required packages *** dnl *********************************** -XDT_CHECK_PACKAGE([EXO], [exo-0.3], [0.3.1.3]) +XDT_CHECK_PACKAGE([EXO], [exo-1], [0.5.0]) XDT_CHECK_PACKAGE([THUNARX], [thunarx-2], [1.0.1]) XDT_CHECK_PACKAGE([TAGLIB], [taglib], [1.4]) diff --git a/thunar-plugin/audio-tags-page.c b/thunar-plugin/audio-tags-page.c index 7e5dab5..b790089 100644 --- a/thunar-plugin/audio-tags-page.c +++ b/thunar-plugin/audio-tags-page.c @@ -283,7 +283,7 @@ audio_tags_page_init (AudioTagsPage *page) /* Allocate the shared tooltips */ page->tooltips = gtk_tooltips_new (); - exo_gtk_object_ref_sink (GTK_OBJECT (page->tooltips)); + g_object_ref_sink (G_OBJECT (page->tooltips)); /* Main container */ vbox = gtk_vbox_new (FALSE, 8); diff --git a/thunar-plugin/tag-renamer.c b/thunar-plugin/tag-renamer.c index acb694e..d1df118 100644 --- a/thunar-plugin/tag-renamer.c +++ b/thunar-plugin/tag-renamer.c @@ -240,7 +240,7 @@ tag_renamer_init (TagRenamer *tag_renamer) /* Allocate shared tooltips */ tag_renamer->tooltips = gtk_tooltips_new (); - exo_gtk_object_ref_sink (GTK_OBJECT (tag_renamer->tooltips)); + g_object_ref_sink (G_OBJECT (tag_renamer->tooltips)); table = gtk_table_new (2, 4, FALSE); gtk_table_set_row_spacings (GTK_TABLE (table), 6); -- 1.6.3.3