git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4412
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
optimized. For example, in wxWindows project, set to 'Minimum
Size'. In Dialog Editor project, set to 'Customize: Favor Small
Code' (and no others). This will then work.
optimized. For example, in wxWindows project, set to 'Minimum
Size'. In Dialog Editor project, set to 'Customize: Favor Small
Code' (and no others). This will then work.
+Note also that a bug in the compiler, even without optimization,
+causes dobjcmn.cpp to produce an internal error, so setup.h
+switches off drag and drop for VC++ 5.
Similarly, in VC++ 4, optimization can cause internal compiler
errors, so edit src\makevc.env and change /O1 to /Od before
Similarly, in VC++ 4, optimization can cause internal compiler
errors, so edit src\makevc.env and change /O1 to /Od before
- Text alignment options in wxStaticText.
- wxImage class extended to read PCX and GIF files.
- Documentation improvements.
- Text alignment options in wxStaticText.
- wxImage class extended to read PCX and GIF files.
- Documentation improvements.
+- Revised configure system for wxGTK and wxMotif; tmake-based
+ system for generating wxMSW makefiles.
+- Installer for Windows as alternative to zip archives.
Platforms supported
-------------------
Platforms supported
-------------------
#define wxUSE_CONFIG 1
// Use wxConfig, with CreateConfig in wxApp
#define wxUSE_CONFIG 1
// Use wxConfig, with CreateConfig in wxApp
+#define wxUSE_DIALUP_MANAGER 1
+ // Use wxDialUpManager class
#define wxUSE_POSTSCRIPT 0
// 0 for no PostScript device context
#define wxUSE_AFM_FOR_POSTSCRIPT 0
#define wxUSE_POSTSCRIPT 0
// 0 for no PostScript device context
#define wxUSE_AFM_FOR_POSTSCRIPT 0
+// Problem with VC++ 5 and dobjcmn.cpp
+
+#if defined(_MSC_VER) && (_MSC_VER > 1020) && (_MSC_VER < 1200)
+#undef wxUSE_DRAG_AND_DROP
+#define wxUSE_DRAG_AND_DROP 0
+#endif
+
+// Doesn't yet compile under BC++: no wininet.h
+#ifndef __BORLANDC__
+
#include <ras.h>
#include <raserror.h>
#include <ras.h>
#include <raserror.h>
rasconnstate, dwError);
}
rasconnstate, dwError);
}
+#endif
+ // __BORLANDC__
#endif // wxUSE_DIALUP_MANAGER
#endif // wxUSE_DIALUP_MANAGER