Missed a few substitutions the first time around

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21261 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott 2003-06-19 22:16:22 +00:00
parent 746aa166e4
commit bfddb9239f
2 changed files with 3 additions and 3 deletions

View 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();
// ------------------------------------------------------------------------

View File

@ -10,7 +10,7 @@
/////////////////////////////////////////////////////////////////////////////
#include "wx/app.h"
#include "wx/statline.h"
#include "wx/slider.h"
#import <AppKit/NSView.h>