From: Julian Smart <julian@anthemion.co.uk>
Date: Thu, 15 Mar 2007 16:09:57 +0000 (+0000)
Subject: Don't send initial event in ctor
X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7660b85c3147dc4d5a57e28fb738f1d45b7add4d

Don't send initial event in ctor


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44832 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---

diff --git a/src/msw/spinctrl.cpp b/src/msw/spinctrl.cpp
index e10de2b893..014e50d81c 100644
--- a/src/msw/spinctrl.cpp
+++ b/src/msw/spinctrl.cpp
@@ -406,9 +406,6 @@ bool wxSpinCtrl::Create(wxWindow *parent,
     // Set the range in the native control
     SetRange(min, max);
 
-    // Send the initial event
-    SendSpinUpdate(initial);
-
     if ( !value.empty() )
     {
         SetValue(value);