From 3d0117c9db154350440072db56d488d7afd3ddae Mon Sep 17 00:00:00 2001 From: Cameron White Date: Sat, 4 Aug 2012 23:32:37 -0400 Subject: [PATCH] Fix finalization warning message for Cairo.Path. --- cairo/Path.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cairo/Path.cs b/cairo/Path.cs index 97cfb8e28..3146db5d0 100644 --- a/cairo/Path.cs +++ b/cairo/Path.cs @@ -58,7 +58,7 @@ namespace Cairo { protected virtual void Dispose (bool disposing) { if (!disposing){ - Console.Error.WriteLine ("Cairo.Context: called from finalization thread, programmer is missing a call to Dispose"); + Console.Error.WriteLine ("Cairo.Path: called from finalization thread, programmer is missing a call to Dispose"); return; }