]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/textctrl.cpp
Change up font selection process
[wxWidgets.git] / src / os2 / textctrl.cpp
index 69f0914f4b5fb685130a2ab8502cd71ba5b36a1d..66b4819ebb0846a41fe7b46b54c7907f6063e657 100644 (file)
@@ -208,16 +208,7 @@ bool wxTextCtrl::Create(
     //
     // Set font, position, size and initial value
     //
-    wxFont&                         vFontParent = pParent->GetFont();
-
-    if (vFontParent.Ok())
-    {
-        SetFont(vFontParent);
-    }
-    else
-    {
-        SetFont(wxSystemSettings::GetFont(wxSYS_SYSTEM_FONT));
-    }
+    SetFont(*wxSMALL_FONT);
     if (!rsValue.IsEmpty())
     {
         SetValue(rsValue);
@@ -965,6 +956,13 @@ WXHBRUSH wxTextCtrl::OnCtlColor(
     return (WXHBRUSH)pBackgroundBrush->GetResourceHandle();
 } // end of wxTextCtrl::OnCtlColor
 
+bool wxTextCtrl::OS2ShouldPreProcessMessage(
+  WXMSG*                            pMsg
+)
+{
+    return wxControl::OS2ShouldPreProcessMessage(pMsg);
+} // end of wxTextCtrl::OS2ShouldPreProcessMessage
+
 void wxTextCtrl::OnChar(
   wxKeyEvent&                       rEvent
 )