}
}
-bool wxFrame::ShowFullScreen(bool show, long style )
+bool wxFrameGTK::ShowFullScreen(bool show, long style )
{
if (show == m_fsIsShowing) return FALSE; // return what?
return m_isIconized;
}
-void wxFrame::SetIconizeState(bool iconize)
+void wxFrameGTK::SetIconizeState(bool iconize)
{
if ( iconize != m_isIconized )
{
}
// we need to update the rect list as well
+#if OLDCODE
wxList& list = *GetRectList();
wxNode *node = list.First();
while (node)
node = node->Next();
}
-
+#endif
return TRUE;
}
}
}
-bool wxFrame::ShowFullScreen(bool show, long style )
+bool wxFrameGTK::ShowFullScreen(bool show, long style )
{
if (show == m_fsIsShowing) return FALSE; // return what?
return m_isIconized;
}
-void wxFrame::SetIconizeState(bool iconize)
+void wxFrameGTK::SetIconizeState(bool iconize)
{
if ( iconize != m_isIconized )
{
}
// we need to update the rect list as well
+#if OLDCODE
wxList& list = *GetRectList();
wxNode *node = list.First();
while (node)
node = node->Next();
}
-
+#endif
return TRUE;
}