]> git.saurik.com Git - wxWidgets.git/commitdiff
reset the internal flags at the end of DoSetValue(), whatever happened in the callback
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 24 Oct 2006 12:23:18 +0000 (12:23 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 24 Oct 2006 12:23:18 +0000 (12:23 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42339 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/textctrl.cpp

index 926d11283fc8ec64183422b568afe0a7167b575a..8a2cd7bffe1eeaf6de5f5d0938684722a08df863 100644 (file)
@@ -967,6 +967,12 @@ void wxTextCtrl::DoSetValue( const wxString &value, int flags )
         gtk_entry_set_text( GTK_ENTRY(m_text), buffer );
     }
 
+    // if, for whatever reason, the callback wasn't called the expected number
+    // of times, still reset the flags to the default values
+    m_dontMarkDirty = false;
+    m_countUpdatesToIgnore = 0;
+
+
     // GRG, Jun/2000: Changed this after a lot of discussion in
     //   the lists. wxWidgets 2.2 will have a set of flags to
     //   customize this behaviour.