]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/textctrl.cpp
added {debughlp|stackwalk}.{h|cpp}
[wxWidgets.git] / src / gtk1 / textctrl.cpp
index d91d2bf5f18dd18c468d217cd63c5da45e8060cd..a970bf7dd527d9689d2cd5d31c2269dcb5589782 100644 (file)
@@ -26,7 +26,7 @@
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <ctype.h>
-#include <math.h>               // for fabs
+#include "wx/math.h"
 
 #include "wx/gtk/private.h"
 #include <gdk/gdkkeysyms.h>
@@ -396,6 +396,11 @@ bool wxTextCtrl::Create( wxWindow *parent,
         // a single-line text control: no need for scrollbars
         m_widget =
         m_text = gtk_entry_new();
+
+#ifdef __WXGTK20__        
+        if (style & wxNO_BORDER)
+            g_object_set( GTK_ENTRY(m_text), "has-frame", FALSE, NULL );
+#endif
     }
 
     m_parent->DoAddChild( this );