]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/univ/textctrl.h
removed _WIN_IE from here, we normally shouldn't need it as it was moved to wrapcctl.h
[wxWidgets.git] / include / wx / univ / textctrl.h
index 43e6d1a53bbe056cd0ba52dd8cf3ea13e5b14aa8..3dbaa38f8ebec9881dff740837f03a73185a23ff 100644 (file)
@@ -265,7 +265,6 @@ public:
     virtual bool Enable(bool enable = TRUE);
 
     // more readable flag testing methods
-    bool IsSingleLine() const { return !(GetWindowStyle() & wxTE_MULTILINE); }
     bool IsPassword() const { return (GetWindowStyle() & wxTE_PASSWORD) != 0; }
     bool WrapLines() const
         { return !IsSingleLine() && !(GetWindowStyle() & wxHSCROLL); }
@@ -456,7 +455,6 @@ protected:
 
     // event handlers
     // --------------
-    void OnIdle(wxIdleEvent& event);
     void OnChar(wxKeyEvent& event);
     void OnSize(wxSizeEvent& event);
 
@@ -477,6 +475,8 @@ protected:
     bool DoCut();
     bool DoPaste();
 
+    // idle processing
+    virtual void OnInternalIdle();
 private:
     // all these methods are for multiline text controls only