X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4eb8ef2d4369675899401ce144cf8261d5c06ad5..5f8047a69b6396744c726ae52a388d898eab27d9:/src/gtk/toplevel.cpp diff --git a/src/gtk/toplevel.cpp b/src/gtk/toplevel.cpp index 7b883348dc..3f8b6b74ed 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) { @@ -927,7 +919,7 @@ void wxTopLevelWindowGTK::DoGetClientSize( int *width, int *height ) const if (height) { - *height = m_height - 2 * m_miniEdge + m_miniTitle; + *height = m_height - 2 * m_miniEdge - m_miniTitle; if (*height < 0) *height = 0; }