From ba64d0b6d5279aca10eebfd1283598ee1c995fc1 Mon Sep 17 00:00:00 2001 From: David Elliott Date: Wed, 2 May 2007 07:18:57 +0000 Subject: [PATCH] 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 --- src/cocoa/window.mm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; } -- 2.45.2