// Created: 24.09.01
// RCS-ID: $Id$
// Copyright: (c) 2001-2004 Stefan Csomor
-// License: wxWindows licence
+// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
// ============================================================================
return true;
}
+bool wxTopLevelWindowMac::Create(wxWindow *parent,
+ WXWindow nativeWindow)
+{
+ if ( !wxNonOwnedWindow::Create(parent, nativeWindow ) )
+ return false;
+
+ wxTopLevelWindows.Append(this);
+
+ return true;
+}
+
wxTopLevelWindowMac::~wxTopLevelWindowMac()
{
}
void wxTopLevelWindowMac::SetTitle(const wxString& title)
{
- wxWindow::SetLabel( title ) ;
+ m_label = title ;
+
if ( m_nowpeer )
m_nowpeer->SetTitle(title, GetFont().GetEncoding() );
}