]> git.saurik.com Git - wxWidgets.git/commitdiff
small updates for OS/2
authorDavid Webster <Dave.Webster@bhmi.com>
Mon, 3 Jan 2000 18:24:10 +0000 (18:24 +0000)
committerDavid Webster <Dave.Webster@bhmi.com>
Mon, 3 Jan 2000 18:24:10 +0000 (18:24 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5205 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/numdlgg.cpp
src/generic/progdlgg.cpp

index 7825d598204ab6195790a4fb2b3a0e650437bd72..17236fc66b1ffb5e07d4a92543ecea3e1a4c144a 100644 (file)
@@ -129,7 +129,7 @@ wxNumberEntryDialog::wxNumberEntryDialog(wxWindow *parent,
     wxString valStr;
     valStr.Printf(wxT("%lu"), m_value);
     m_spinctrl = new wxSpinCtrl(this, -1, valStr, wxDefaultPosition, wxSize( 140, -1 ) );
-    m_spinctrl -> SetRange(m_min, m_max);
+    m_spinctrl->SetRange(m_min, m_max);
     inputsizer->Add( m_spinctrl, 1, wxCENTER | wxLEFT | wxRIGHT, 10 );
     // add both
     topsizer->Add( inputsizer, 1, wxEXPAND | wxLEFT|wxRIGHT, 5 );
index 812b9a7e8c1158b02890c5e243f715b83802f084..99126cbffa3c6b2527bb0ecc5598800e6c2204f0 100644 (file)
@@ -169,7 +169,6 @@ wxProgressDialog::wxProgressDialog(wxString const &title,
     {
         // set it to the current time
         m_timeStart = wxGetCurrentTime();
-
         sizeDlg.y += nTimeLabels * (sizeLabel.y + LAYOUT_Y_MARGIN);
     }