]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/textctrl.cpp
More Motif stuff incl. beginnings of wxToolBar
[wxWidgets.git] / src / msw / textctrl.cpp
index 65fe3eac812a85c4169ff3a67722793d00e98c2f..dc70319e757c3a7c804e0024ba155fa57e0d681a 100644 (file)
@@ -745,11 +745,15 @@ void wxTextCtrl::OnDropFiles(wxDropFilesEvent& event)
 int wxTextCtrl::overflow(int c)
 {
   // Make sure there is a holding area
+  // this is not needed in <iostream> usage as it automagically allocates
+  // it, but does someone want to emulate it for safety's sake?
+#if wxUSE_IOSTREAMH
   if ( allocate()==EOF )
   {
     wxError("Streambuf allocation failed","Internal error");
     return EOF;
   }
+#endif
   
   // Verify that there are no characters in get area
   if ( gptr() && gptr() < egptr() )
@@ -766,7 +770,12 @@ int wxTextCtrl::overflow(int c)
   {
 /* This doesn't seem to be fatal so comment out error message */
 //    wxError("Put area not opened","Internal error");
-    setp( base(), base() );
+
+#if wxUSE_IOSTREAMH
+         setp( base(), base() );
+#else
+         setp( pbase(), pbase() );
+#endif
   }
 
   // Determine how many characters have been inserted but no consumed