From 56711895f9e698b5eba0d047fa4d3ff9139509ee Mon Sep 17 00:00:00 2001 From: Duncan Mak Date: Mon, 6 Jan 2003 01:07:10 +0000 Subject: [PATCH] Use 'out' instead of ref. svn path=/trunk/gtk-sharp/; revision=10194 --- gdk/Drawable.custom | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gdk/Drawable.custom b/gdk/Drawable.custom index 01744c3af..66e8c7618 100644 --- a/gdk/Drawable.custom +++ b/gdk/Drawable.custom @@ -9,9 +9,9 @@ /// Returns the size of the Drawble public System.Drawing.Size Size { get { - int x, y; - GetSize(ref x, ref y); - return new System.Drawing.Size(x, y); + int x, y; + GetSize (out x, out y); + return new System.Drawing.Size (x, y); } }