]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/textctrl.cpp
Version 0.4 of wxPython for MSW.
[wxWidgets.git] / src / gtk1 / textctrl.cpp
index f5e26432872a40710706cc4c0cd03844bdad5978..44c3429337f1a184ec398f1eb6a3713193812341 100644 (file)
@@ -324,7 +324,6 @@ void wxTextCtrl::OnChar( wxKeyEvent &key_event )
   {
     wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, m_windowId);
     event.SetEventObject(this);
-    printf( "Hallo.\n" );
     if (GetEventHandler()->ProcessEvent(event)) return;
   }
   else if (key_event.KeyCode() == WXK_TAB) 
@@ -431,7 +430,10 @@ bool wxTextCtrl::IsOwnGtkWindow( GdkWindow *window )
 
 void wxTextCtrl::SetFont( const wxFont &font )
 {
-  m_font = font;
+  if (((wxFont*)&font)->Ok())
+    m_font = font;
+  else
+    m_font = *wxSWISS_FONT;
   
   GtkStyle *style = (GtkStyle*) NULL;
   if (!m_hasOwnStyle)