]> git.saurik.com Git - wxWidgets.git/commitdiff
Add comments and a debugging aid to Get/SetLabel implementations which are intentiona...
authorDavid Elliott <dfe@tgwbd.org>
Wed, 2 May 2007 07:18:57 +0000 (07:18 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Wed, 2 May 2007 07:18:57 +0000 (07:18 +0000)
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

index 13024b9f67201304dcb56ada7b959aee5a56045e..6529cdf7be8fbab8127667a9462d33e9ff924128 100644 (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;
 }