X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FManaged.Windows.Forms%2FSystem.Windows.Forms%2FXplatUI.cs;h=ad6a46a39c04d860b1a4800acf42c7e2574560e6;hb=423f6711390a6d6b8ffe1184c14639906e2fc8b4;hp=a661798fb2482bb8b550beb8d1336388deb3d5e3;hpb=0c88f4428cf84aebbef05209ca48a68df1cd2c0e;p=mono.git diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/XplatUI.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/XplatUI.cs index a661798fb24..ad6a46a39c0 100644 --- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/XplatUI.cs +++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/XplatUI.cs @@ -202,8 +202,8 @@ namespace System.Windows.Forms { driver.SetWindowPos(handle, x, y, width, height); } - internal static void GetWindowPos(IntPtr handle, out int x, out int y, out int width, out int height, out int client_width, out int client_height) { - driver.GetWindowPos(handle, out x, out y, out width, out height, out client_width, out client_height); + internal static void GetWindowPos(IntPtr handle, bool is_toplevel, out int x, out int y, out int width, out int height, out int client_width, out int client_height) { + driver.GetWindowPos(handle, is_toplevel, out x, out y, out width, out height, out client_width, out client_height); } internal static void Invalidate(IntPtr handle, Rectangle rc, bool clear) {