From 3f2252ad82bdfd36e51735f27169f21f2aeff198 Mon Sep 17 00:00:00 2001 From: Mike Kestner Date: Thu, 12 May 2005 19:06:36 +0000 Subject: [PATCH] fix a typo in a warning message svn path=/trunk/gtk-sharp/; revision=44457 --- glib/Object.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glib/Object.cs b/glib/Object.cs index 09fa82efd..e16c98ff3 100644 --- a/glib/Object.cs +++ b/glib/Object.cs @@ -64,7 +64,7 @@ namespace GLib { try { g_object_unref (o._obj); } catch (Exception e) { - Console.WriteLine ("Exception while disposing a " + o + "in Gtk#"); + Console.WriteLine ("Exception while disposing a " + o + " in Gtk#"); throw e; } o._obj = IntPtr.Zero;