void wxTopLevelWindowMac::ShowWithoutActivating()
{
- return m_nowpeer->ShowWithoutActivating();
+ if ( !wxTopLevelWindowBase::Show(true) )
+ return;
+
+ m_nowpeer->ShowWithoutActivating();
+
+ // TODO: Should we call EVT_SIZE here?
}
bool wxTopLevelWindowMac::ShowFullScreen(bool show, long style)
{
return m_nowpeer->IsActive();
}
+
+void wxTopLevelWindowMac::OSXSetModified(bool modified)
+{
+ m_nowpeer->SetModified(modified);
+}
+
+bool wxTopLevelWindowMac::OSXIsModified() const
+{
+ return m_nowpeer->IsModified();
+}