printf( ".\n" );
*/
- win->GtkOnSize( alloc->width, alloc->height );
+ win->GtkOnSize( alloc->x, alloc->y, alloc->width, alloc->height );
};
//-----------------------------------------------------------------------------
};
};
-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;