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;
{
};
-int wxTextCtrl::overflow(int c)
+int wxTextCtrl::overflow( int WXUNUSED(c) )
{
int len = pptr() - pbase();
char *txt = new char[len+1];
return *this;
}
+GtkWidget* wxTextCtrl::GetDropTargetWidget(void)
+{
+ return GTK_WIDGET(m_text);
+};
+
+
+
+