X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/23645bfa01b6450257f140a30c87565225b1ef4a..66ce9e0609ac419e6eeff665b1087193954ed84a:/src/univ/textctrl.cpp?ds=inline diff --git a/src/univ/textctrl.cpp b/src/univ/textctrl.cpp index 2f552fe063..e1cedbad12 100644 --- a/src/univ/textctrl.cpp +++ b/src/univ/textctrl.cpp @@ -150,6 +150,10 @@ #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 (?)