]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/textctrl.h
added and implemented for MSW wxDP_SHOWCENTURY flag
[wxWidgets.git] / include / wx / msw / textctrl.h
index 4c6b18e6681503ed387958ed51e933070881c29f..736beed112b9c6b8fb8f1100ba08fb6be5f094fd 100644 (file)
@@ -131,7 +131,7 @@ public:
     virtual void SetInsertionPoint(long pos);
     virtual void SetInsertionPointEnd();
     virtual long GetInsertionPoint() const;
-    virtual long GetLastPosition() const;
+    virtual wxTextPos GetLastPosition() const;
 
     virtual void SetSelection(long from, long to);
     virtual void SetEditable(bool editable);
@@ -247,9 +247,9 @@ protected:
     int m_verRichEdit;
 #endif // wxUSE_RICHEDIT
 
-    // if true, SendUpdateEvent() will eat the next event (see comments in the
-    // code as to why this is needed)
-    bool m_suppressNextUpdate;
+    // number of EN_UPDATE events sent by Windows when we change the controls
+    // text ourselves: we want this to be exactly 1
+    int m_updatesCount;
 
     virtual wxVisualAttributes GetDefaultAttributes() const;