]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/spinctrl.cpp
A little better failure message
[wxWidgets.git] / src / msw / spinctrl.cpp
index c2df8b2451659ac991ea1cb061c99afaf0464a16..36396bf241f62fd0d3c096c2a3f06e71450d5946 100644 (file)
@@ -372,13 +372,13 @@ bool wxSpinCtrl::Create(wxWindow *parent,
 
     // should have the same font as the other controls
     SetFont(GetParent()->GetFont());
-
+    
     // set the size of the text window - can do it only now, because we
     // couldn't call DoGetBestSize() before as font wasn't set
     if ( sizeText.y <= 0 )
     {
         int cx, cy;
-        wxGetCharSize(GetHWND(), &cx, &cy, &GetFont());
+        wxGetCharSize(GetHWND(), &cx, &cy, GetFont());
 
         sizeText.y = EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy);
     }
@@ -441,7 +441,7 @@ int wxSpinCtrl::GetValue() const
 
 void wxSpinCtrl::SetSelection(long from, long to)
 {
-    // if from and to are both -1, it means (in wxWindows) that all text should
+    // if from and to are both -1, it means (in wxWidgets) that all text should
     // be selected - translate into Windows convention
     if ( (from == -1) && (to == -1) )
     {
@@ -526,7 +526,7 @@ wxSize wxSpinCtrl::DoGetBestSize() const
     sizeBtn.x += DEFAULT_ITEM_WIDTH + MARGIN_BETWEEN;
 
     int y;
-    wxGetCharSize(GetHWND(), NULL, &y, &GetFont());
+    wxGetCharSize(GetHWND(), NULL, &y, GetFont());
     y = EDIT_HEIGHT_FROM_CHAR_HEIGHT(y);
 
     // JACS: we should always use the height calculated