]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/textcmn.cpp
basic support for encodings for wxMSW::wxFont
[wxWidgets.git] / src / common / textcmn.cpp
index 33796a5371efc7ea745a8113f01e5f13021a99bc..63408d24d4c12e6d9f55806dfa032dec068cfe3c 100644 (file)
 // ============================================================================
 // declarations
 // ============================================================================
-
+#ifdef __GNUG__
+    #pragma implementation "textctrlbase.h"
+#endif
+        
 // for compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
@@ -21,6 +24,8 @@
 #endif
 
 #ifndef WX_PRECOMP
+    #include "wx/intl.h"
+    #include "wx/log.h"
     #include "wx/textctrl.h"
 #endif // WX_PRECOMP
 
 
 wxTextCtrlBase::wxTextCtrlBase()
 {
+#ifndef NO_TEXT_WINDOW_STREAM
+    if (allocate())
+        setp(base(),ebuf());
+#endif // NO_TEXT_WINDOW_STREAM
 }
 
 // ----------------------------------------------------------------------------
@@ -142,7 +151,7 @@ wxTextCtrl& wxTextCtrlBase::operator<<(long i)
     return *TEXTCTRL(this);
 }
 
-wxTextCtrl& wxTextCtrlBase::operator<<(const char c)
+wxTextCtrl& wxTextCtrlBase::operator<<(const wxChar c)
 {
     return operator<<(wxString(c));
 }