]> git.saurik.com Git - wxWidgets.git/commitdiff
Missed a few substitutions the first time around
authorDavid Elliott <dfe@tgwbd.org>
Thu, 19 Jun 2003 22:16:22 +0000 (22:16 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Thu, 19 Jun 2003 22:16:22 +0000 (22:16 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21261 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/cocoa/slider.h
src/cocoa/slider.mm

index d89415fdc94c50169e69115863bbaa8d3a303ceb..e1a9193f032db8451fbc89598dfad3ac343f213d 100644 (file)
@@ -33,7 +33,7 @@ public:
             const wxSize& size = wxDefaultSize,
             long style = wxSL_HORIZONTAL,
             const wxValidator& validator = wxDefaultValidator,
-            const wxString& name = wxStaticTextNameStr)
+            const wxString& name = wxSliderNameStr)
     {
         Create(parent, winid, value, minValue, maxValue,
             pos, size, style, validator, name);
@@ -45,7 +45,7 @@ public:
             const wxSize& size = wxDefaultSize,
             long style = wxSL_HORIZONTAL,
             const wxValidator& validator = wxDefaultValidator,
-            const wxString& name = wxStaticTextNameStr);
+            const wxString& name = wxSliderNameStr);
     virtual ~wxSlider();
 
 // ------------------------------------------------------------------------
index 9b0cea9a5c333c2792b14da491d7f2399ff513df..f239be10036bf5aadbd7005d7d05eb6e7a0ef64b 100644 (file)
@@ -10,7 +10,7 @@
 /////////////////////////////////////////////////////////////////////////////
 
 #include "wx/app.h"
-#include "wx/statline.h"
+#include "wx/slider.h"
 
 #import <AppKit/NSView.h>