Just a teeny change -- addition of wxFrame::IsMaximized. For wxMDIChildFrame

in wxGTK, is probably always TRUE (always size of client area).


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1220 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1998-12-17 17:59:50 +00:00
parent c95e68d8c7
commit 6f63ec3f93
8 changed files with 41 additions and 0 deletions

View File

@@ -534,6 +534,13 @@ bool wxFrame::IsIconized() const
return iconic;
}
// Is it maximized?
bool wxFrame::IsMaximized(void) const
{
// No maximizing in Motif (?)
return FALSE;
}
void wxFrame::SetTitle(const wxString& title)
{
if (title == m_title)