]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/textctrl.cpp
New Unix configure system
[wxWidgets.git] / src / gtk1 / textctrl.cpp
index 59c3d339803cff07ddaf0c03c60215b94d405193..deb1db70fb7f148d0e73729b7074a8794284c7d6 100644 (file)
@@ -59,7 +59,8 @@ bool wxTextCtrl::Create( wxWindow *parent, wxWindowID id, const wxString &value,
   PreCreation( parent, id, pos, size, style, name );
 
   bool bMultiLine = (style & wxTE_MULTILINE) != 0;
-  if ( bMultiLine ) {
+  if ( bMultiLine ) 
+  {
     // a multi-line edit control: create a vertical scrollbar by default and
     // horizontal if requested
     bool bHasHScrollbar = (style & wxHSCROLL) != 0;
@@ -308,7 +309,7 @@ void wxTextCtrl::OnChar( wxKeyEvent &WXUNUSED(event) )
 {
 };
 
-int wxTextCtrl::overflow(int c)
+int wxTextCtrl::overflow( int WXUNUSED(c) )
 {
   int len = pptr() - pbase();
   char *txt = new char[len+1];
@@ -385,3 +386,11 @@ wxTextCtrl& wxTextCtrl::operator<<(const char c)
   return *this;
 }
 
+GtkWidget* wxTextCtrl::GetDropTargetWidget(void)
+{
+  return GTK_WIDGET(m_text);
+};
+
+
+
+