]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/frame.cpp
another "const" added
[wxWidgets.git] / src / gtk / frame.cpp
index e78e9679b6b8ad2376e4a9d55221b1d5a6e20455..075ed1e7f6dc0cdc8203806668a78312ede08462 100644 (file)
@@ -42,7 +42,7 @@ void gtk_frame_size_callback( GtkWidget *WXUNUSED(widget), GtkAllocation* alloc,
   printf( ".\n" );
 */
 
-  win->GtkOnSize( alloc->width, alloc->height );
+  win->GtkOnSize( alloc->x, alloc->y, alloc->width, alloc->height );
 };
 
 //-----------------------------------------------------------------------------
@@ -194,8 +194,11 @@ void wxFrame::GetClientSize( int *width, int *height ) const
   };
 };
 
-void wxFrame::GtkOnSize( int width, int height )
+void wxFrame::GtkOnSize( int x, int y, int width, int height )
 {
+  m_x = x;
+  m_y = y;
+
   if ((m_height == height) && (m_width == width) &&
       (m_sizeSet)) return;
   if (!m_mainWindow) return;