diff --git a/src/cocoa/window.mm b/src/cocoa/window.mm index d917dea43e..3343592ef3 100644 --- a/src/cocoa/window.mm +++ b/src/cocoa/window.mm @@ -857,12 +857,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 NOT implemented in wxControlBase until trunk (2.9). + wxLogDebug(wxT("wxWindow::GetLabel: Should be overridden if needed.")); return wxEmptyString; }