Removed queuedResize code again as GTK+ does this internally already

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58437 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2009-01-26 20:43:12 +00:00
parent b162ccca03
commit 992d6e1e2c
2 changed files with 0 additions and 18 deletions

View File

@@ -148,9 +148,6 @@ private:
bool m_grabbed; bool m_grabbed;
bool m_updateDecorSize; bool m_updateDecorSize;
public:
bool m_resizeQueued;
}; };
#endif // _WX_GTK_TOPLEVEL_H_ #endif // _WX_GTK_TOPLEVEL_H_

View File

@@ -222,13 +222,9 @@ size_allocate(GtkWidget*, GtkAllocation* alloc, wxTopLevelWindowGTK* win)
if (!win->IsIconized()) if (!win->IsIconized())
{ {
#if 1
win->m_resizeQueued = true;
#else
wxSizeEvent event(size, win->GetId()); wxSizeEvent event(size, win->GetId());
event.SetEventObject(win); event.SetEventObject(win);
win->HandleWindowEvent(event); win->HandleWindowEvent(event);
#endif
} }
// else the window is currently unmapped, don't generate size events // else the window is currently unmapped, don't generate size events
} }
@@ -449,8 +445,6 @@ void wxTopLevelWindowGTK::Init()
m_updateDecorSize = true; m_updateDecorSize = true;
m_urgency_hint = -2; m_urgency_hint = -2;
m_resizeQueued = false;
} }
bool wxTopLevelWindowGTK::Create( wxWindow *parent, bool wxTopLevelWindowGTK::Create( wxWindow *parent,
@@ -1095,15 +1089,6 @@ void wxTopLevelWindowGTK::OnInternalIdle()
wxTheApp->SetActive(activate, (wxWindow *)g_lastActiveFrame); wxTheApp->SetActive(activate, (wxWindow *)g_lastActiveFrame);
} }
if (m_resizeQueued)
{
wxSize size( m_width, m_height );
wxSizeEvent event(size, GetId());
event.SetEventObject(this);
HandleWindowEvent(event);
m_resizeQueued = false;
}
} }
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------