X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4eb8ef2d4369675899401ce144cf8261d5c06ad5..1e89eecdc210a2e12e9bc07b6bfeefc393cf7050:/src/gtk/toplevel.cpp diff --git a/src/gtk/toplevel.cpp b/src/gtk/toplevel.cpp index 7b883348dc..8a294525a4 100644 --- a/src/gtk/toplevel.cpp +++ b/src/gtk/toplevel.cpp @@ -243,9 +243,6 @@ static void gtk_frame_size_callback( GtkWidget *WXUNUSED(widget), GtkAllocation* win->m_width = alloc->width; win->m_height = alloc->height; - if (win->m_mainWidget) - GTK_PIZZA(win->m_mainWidget)->m_width = win->m_width; - win->GtkUpdateSize(); } } @@ -566,8 +563,6 @@ bool wxTopLevelWindowGTK::Create( wxWindow *parent, GTK_WIDGET_UNSET_FLAGS( m_mainWidget, GTK_CAN_FOCUS ); gtk_container_add( GTK_CONTAINER(m_widget), m_mainWidget ); - GTK_PIZZA(m_mainWidget)->m_width = m_width; - if (m_miniEdge == 0) // wxMiniFrame has its own version. { // For m_mainWidget themes @@ -862,9 +857,6 @@ void wxTopLevelWindowGTK::DoSetSize( int x, int y, int width, int height, int si if (width != -1) m_width = width; if (height != -1) m_height = height; - if (m_mainWidget) - GTK_PIZZA(m_mainWidget)->m_width = m_width; - /* if ((sizeFlags & wxSIZE_AUTO_WIDTH) == wxSIZE_AUTO_WIDTH) {