From 162b93dcb440b9b09ce9a1f6b5ddae6a1b97383e Mon Sep 17 00:00:00 2001 From: Benedikt Meurer <benny@xfce.org> Date: Wed, 14 Sep 2005 19:55:35 +0000 Subject: [PATCH] 2005-09-14 Benedikt Meurer <benny@xfce.org> * thunar/thunar-launcher.c(thunar_launcher_open_files): Use g_object_unref() instead of exo_object_unref(). (Old svn revision: 17608) --- ChangeLog | 5 +++++ thunar/thunar-launcher.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index bfa5c26b4..86c4119f8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-09-14 Benedikt Meurer <benny@xfce.org> + + * thunar/thunar-launcher.c(thunar_launcher_open_files): Use + g_object_unref() instead of exo_object_unref(). + 2005-09-14 Benedikt Meurer <benny@xfce.org> * thunar-vfs/thunar-vfs-mime-application.{c,h}, diff --git a/thunar/thunar-launcher.c b/thunar/thunar-launcher.c index af81f9810..eb60804c7 100644 --- a/thunar/thunar-launcher.c +++ b/thunar/thunar-launcher.c @@ -437,7 +437,7 @@ thunar_launcher_open_files (ThunarLauncher *launcher, g_hash_table_foreach (applications, (GHFunc) thunar_launcher_open_uris, launcher); /* release the reference on the mime database */ - exo_object_unref (EXO_OBJECT (database)); + g_object_unref (G_OBJECT (database)); /* drop the applications hash table */ g_hash_table_destroy (applications); -- GitLab