diff --git a/src/cocoa/window.mm b/src/cocoa/window.mm index 13024b9f67..6529cdf7be 100644 --- a/src/cocoa/window.mm +++ b/src/cocoa/window.mm @@ -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; }