]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/textctrl.cpp
MicroWindows mods
[wxWidgets.git] / src / msw / textctrl.cpp
index c4803778fedc7295da921f8afb22ea05d18c4efa..27a8a374621a0924f03e9cbfd1fb5fac58bc2248 100644 (file)
@@ -443,7 +443,7 @@ void wxTextCtrl::SetValue(const wxString& value)
     }
 }
 
-#if wxUSE_RICHEDIT
+#if wxUSE_RICHEDIT && !wxUSE_UNICODE
 
 DWORD CALLBACK wxRichEditStreamIn(DWORD dwCookie, BYTE *buf, LONG cb, LONG *pcb)
 {
@@ -529,6 +529,7 @@ void wxTextCtrl::WriteText(const wxString& value)
             SetStyle(start, end, m_defaultStyle );
         }
 
+#if !wxUSE_UNICODE
         // next check if the text we're inserting must be shown in a non
         // default charset -- this only works for RichEdit > 1.0
         if ( GetRichVersion() > 1 )
@@ -546,6 +547,7 @@ void wxTextCtrl::WriteText(const wxString& value)
                }
             }
         }
+#endif // !wxUSE_UNICODE
     }
 
     if ( !done )