]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/spinctlg.cpp
removed use of p2cstr
[wxWidgets.git] / src / generic / spinctlg.cpp
index 488f789a1e2ecfef3ef5c4188eb3d3aa39b5a565..148dd99b20bb6a51419a4c15367ec692e02854a8 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     29.01.01
 // RCS-ID:      $Id$
 // Copyright:   (c) 2001 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
-// License:     wxWidgets licence
+// License:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
 // ============================================================================
@@ -60,7 +60,7 @@ public:
         : wxTextCtrl(spin->GetParent(), wxID_ANY, value)
     {
         m_spin = spin;
-        
+
         // remove the default minsize, the spinctrl will have one instead
         SetSizeHints(wxDefaultSize.x,wxDefaultSize.y);
     }
@@ -184,11 +184,11 @@ bool wxSpinCtrl::Create(wxWindow *parent,
 
     m_text = new wxSpinCtrlText(this, value);
     m_btn = new wxSpinCtrlButton(this, style);
-        
+
     m_btn->SetRange(min, max);
     m_btn->SetValue(initial);
     SetBestSize(size);
-    
+
     // have to disable this window to avoid interfering it with message
     // processing to the text and the button... but pretend it is enabled to
     // make IsEnabled() return true