]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/textctrl.cpp
Soem corrections for SetSize changes
[wxWidgets.git] / src / msw / textctrl.cpp
index 7fa765d4a4cbaf8f90a5996f080b8ab002aa8a02..fd62249fe959cf84091aa8c00e50b7dfca4f72ac 100644 (file)
@@ -311,7 +311,7 @@ void wxTextCtrl::SetValue(const wxString& value)
     SetWindowText((HWND) GetHWND(), (const char *)value);
 }
 
-void wxTextCtrl::SetSize(int x, int y, int width, int height, int sizeFlags)
+void wxTextCtrl::DoSetSize(int x, int y, int width, int height, int sizeFlags)
 {
   int currentX, currentY;
   GetPosition(&currentX, &currentY);
@@ -965,7 +965,7 @@ void wxTextCtrl::OnChar(wxKeyEvent& event)
         case '\\':
             {
                 char c = (char)event.KeyCode();
-                *this << c;
+                WriteText(c);
             }
             break;