- Properly generates the LocationChanged event now, even for forms
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / XplatUI.cs
index a661798fb2482bb8b550beb8d1336388deb3d5e3..ad6a46a39c04d860b1a4800acf42c7e2574560e6 100644 (file)
@@ -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) {