]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/textctrl.cpp
fixed compilation warnings with GTK+ 2.0
[wxWidgets.git] / src / univ / textctrl.cpp
index 2f552fe06337ca85259236beddaea709efe75dcb..e1cedbad1289db234de92cd2f1980d2823e106a0 100644 (file)
 
 #include "wx/cmdproc.h"
 
+#if wxUSE_CLIPBOARD
+#include "wx/dataobj.h"
+#endif
+
 // turn extra wxTextCtrl-specific debugging on/off
 #define WXDEBUG_TEXT
 
@@ -661,11 +665,14 @@ bool wxTextCtrl::Create(wxWindow *parent,
             style |= wxALWAYS_SHOW_SB;
         }
 
+        // wxTE_WORDWRAP is 0 for now so we don't need the code below
+#if 0
         if ( style & wxTE_WORDWRAP )
         {
             // wrapping words means wrapping, hence no horz scrollbar
             style &= ~wxHSCROLL;
         }
+#endif // 0
 
         // TODO: support wxTE_NO_VSCROLL (?)