diff --git a/docs/gtk/changes.txt b/docs/gtk/changes.txt index 9212a4d8d3..85946c0d92 100644 --- a/docs/gtk/changes.txt +++ b/docs/gtk/changes.txt @@ -1,5 +1,5 @@ -29th July '99: Eight wxGTK 2.1 snapshot released +6th August '99: Eight wxGTK 2.1 snapshot released The new makefile system is not able to produce shared libraries on Unix with the exception of Linux - libtool is really great. @@ -36,10 +36,12 @@ wxFilesystem, wxHTMLHelpController and others. Added a wrapper for ffile() etc functions. -Updateds to wxDynamicLibrary. +Updates to wxDynamicLibrary. New documentation. +New version of wxPython, of course. + Fixed in unenclosed number of other bugs... 25th June '99: Seventh wxGTK 2.1 snapshot released diff --git a/docs/html/news.htm b/docs/html/news.htm index 49e1aa47db..a085388f3d 100644 --- a/docs/html/news.htm +++ b/docs/html/news.htm @@ -18,9 +18,34 @@ News +
+ +Today, a snapshot release of the MSW and the GTK ports has been +made. The two snapshots are synchronized and have been tested +for several weeks and should thus be considered to be quite stable. + +Among the many new features that have appeared since version 2.0 +was release are: + +
-We are glad to announce the start of the work on the new wxWindows port - wxBe +We are glad to announce the start of the work on the new wxWindows port - wxBeOS which will implement wxWindows 2 API for BeOS. Thanks to Be for donating licenses to wxWindows project to make it possible.
diff --git a/include/wx/dynarray.h b/include/wx/dynarray.h
index 34aaff0a2b..caf4b814d1 100644
--- a/include/wx/dynarray.h
+++ b/include/wx/dynarray.h
@@ -177,7 +177,7 @@ public: \
{ \
size_t type = sizeof(T); \
size_t sizelong = sizeof(long); \
- if ( type <= sizelong ) \
+ if ( type > sizelong ) \
{ wxFAIL_MSG( _T("illegal use of DEFINE_ARRAY") ); } \
} \
\
@@ -239,7 +239,7 @@ public: \
name(SCMPFUNC##T fn) \
{ size_t type = sizeof(T); \
size_t sizelong = sizeof(long); \
- if ( type <= sizelong ) \
+ if ( type > sizelong ) \
{ wxFAIL_MSG( _T("illegal use of DEFINE_ARRAY") ); } \
m_fnCompare = fn; \
} \
diff --git a/include/wx/gsocket.h b/include/wx/gsocket.h
index 6f606332a9..7190696fd0 100644
--- a/include/wx/gsocket.h
+++ b/include/wx/gsocket.h
@@ -8,12 +8,14 @@
#ifndef __GSOCKET_H
#define __GSOCKET_H
+#include "wx/setup.h"
+
+#if wxUSE_SOCKETS
+
#include