]> git.saurik.com Git - wxWidgets.git/commitdiff
Added comment makeg95.env
authorJulian Smart <julian@anthemion.co.uk>
Tue, 15 Feb 2000 17:32:14 +0000 (17:32 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Tue, 15 Feb 2000 17:32:14 +0000 (17:32 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6046 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/makeg95.env
src/msw/treectrl.cpp

index 26fff919289cc0118108bf1e380c0461871bbc66..0e65d8146b9a1c379a7710440f76c8b7e4346404 100644 (file)
@@ -27,13 +27,10 @@ LD_SUPPORTS_SHARED=yes
 # Set to the appropriate remove command
 RM=rm -f 
 
-# Set to the appropriate copy command
-# Some possible alternatives:
-# COPY=cp and COPYSEP=/
-# COPY=copy and COPYSEP=\
-#
-COPY=copy
-COPYSEP=\
+# Set to the appropriate copy command.
+# You can get a suitable cp.exe from ports/mingw32/extra.zip on the ftp site.
+COPY=cp
+COPYSEP=/
 
 # Cross compiling? Provide the target prefix (eg., i386-mingw32-)
 # CROSS=i386-mingw32-
index 500d880e7cc31a6895015e99e66574bf29982410..9b0c6faea9920aa869dea936c0f0d59352f2623a 100644 (file)
@@ -344,6 +344,11 @@ bool wxTreeCtrl::Create(wxWindow *parent,
     !defined( __BORLANDC__ ) && \
     !defined( __WATCOMC__ ) && \
     (!defined(__VISUALC__) || (__VISUALC__ > 1010))
+
+#ifndef TVS_CHECKBOXES
+#define TVS_CHECKBOXES 0x0100
+#endif
+
     // we emulate the multiple selection tree controls by using checkboxes: set
     // up the image list we need for this if we do have multiple selections
     if ( m_windowStyle & wxTR_MULTIPLE )