Add comments and a debugging aid to Get/SetLabel implementations which are intentional no-ops for wxCocoa.

Copyright Software 2000 Ltd.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45749 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott
2007-05-02 07:18:57 +00:00
parent 3be926e348
commit ba64d0b6d5

View File

@@ -833,12 +833,13 @@ void wxWindow::CocoaSetWxWindowSize(int width, int height)
void wxWindow::SetLabel(const wxString& WXUNUSED(label))
{
// TODO
// Intentional no-op.
}
wxString wxWindow::GetLabel() const
{
// TODO
// General Get/Set of labels is implemented in wxControlBase
wxLogDebug(wxT("wxWindow::GetLabel: Should be overridden if needed."));
return wxEmptyString;
}