- r16999: 2002-09-05 20:49:18 [GRG] Guillermo R. Garcia
-
/src/unix/gsocket.c [diff, log, file]
Solved problems with handling of LOST events on Unix platforms (reported
on wxGTK). Main symptoms were spurious CONNECT events being delivered when
a connection had failed.
- r16799: 2002-08-26 22:54:25 [GRG] Guillermo R. Garcia
-
/src/msw/font.cpp [diff, log, file]
Fixed warnings due to use of %d for long int params in function
wxNativeFontInfo::ToString()
- r16795: 2002-08-26 21:12:25 [GRG] Guillermo R. Garcia
-
/src/msw/bitmap.cpp [diff, log, file]
/src/msw/dcprint.cpp [diff, log, file]
/src/msw/ole/dataobj.cpp [diff, log, file]
/src/msw/tbar95.cpp [diff, log, file]
/src/msw/toplevel.cpp [diff, log, file]
/src/msw/window.cpp [diff, log, file]
Removed compilation warnings (mostly mismatches between the format string
for debug/trace printfs and the actual parameters, e.g. int vs long, etc)
- r12044: 2001-10-17 16:18:56 [GRG] Guillermo R. Garcia
-
/src/msw/makefile.g95 [diff, log, file]
Added comment explaining that it's not necessary to use LEX and YACC on
Windows since the files will be copied from doslex.c and dosyacc.c by
default.
- r10546: 2001-06-12 06:34:24 [GRG] Guillermo R. Garcia
-
/src/common/gifdecod.cpp [diff, log, file]
For all platforms except WXMAC, the wxGIFDecoder::dgif function was
allocating 3 arrays of 4096 ints in the stack (48K) which causes
problems with Watcom. Now all platforms behave like WXMAC, i.e. the
arrays are allocated (and freed) dynamically on the heap.
- r10149: 2001-05-14 09:37:22 [GRG] Guillermo R. Garcia
-
[WX_2_2_BRANCH] /src/common/socket.cpp [diff, log, file]
Backported fix for PROCESS_EVENTS to work properly in MT programs
- r10148: 2001-05-14 09:33:31 [GRG] Guillermo R. Garcia
-
[WX_2_2_BRANCH] /demos/life/life.cpp [diff, log, file]
[WX_2_2_BRANCH] /demos/life/reader.cpp [diff, log, file]
- Corrected a bug in reader.cpp where copy ctors of stream classes
were incorrectly being used.
- Replaced GetFilename with GetPath in the file selector dialog in
life.cpp, otherwise it doesn't work for files outside the current
directory.
- r10147: 2001-05-14 09:12:31 [GRG] Guillermo R. Garcia
-
[WX_2_2_BRANCH] /src/msw/window.cpp [diff, log, file]
settings.h was missing if precompiled headers were not used (will someone ever check that? :)
- r10146: 2001-05-14 07:43:08 [GRG] Guillermo R. Garcia
-
[WX_2_2_BRANCH] /src/msw/regconf.cpp [diff, log, file]
Better now, when not using precompiled headers it only includes
string.h and intl.h instead of the whole wx.h
- r10145: 2001-05-14 07:40:25 [GRG] Guillermo R. Garcia
-
[WX_2_2_BRANCH] /src/msw/regconf.cpp [diff, log, file]
Compilation broken under mingw32 (and any compiler w/o precompiled
headers) complaining about implicit declaration of _(...). I just
#included <wx.h> to solve this.
- r10100: 2001-05-10 06:35:42 [GRG] Guillermo R. Garcia
-
/demos/life/life.cpp [diff, log, file]
Use GetPath instead of GetFileName in file selector, otherwise it doesn't work for files outside the current directory
- r10099: 2001-05-10 06:31:39 [GRG] Guillermo R. Garcia
-
/include/wx/msw/gsockmsw.h [diff, log, file]
/include/wx/unix/gsockunx.h [diff, log, file]
/src/gtk/gsockgtk.c [diff, log, file]
/src/gtk1/gsockgtk.c [diff, log, file]
/src/motif/gsockmot.c [diff, log, file]
/src/msw/gsockmsw.c [diff, log, file]
Private gsocket files were using 'typedef int bool', removed this
and replaced by true ints. Currently this was not causing any problem
but it is better to avoid bool at all in C code as a matter of good
coding practice.
- r10097: 2001-05-10 06:24:10 [GRG] Guillermo R. Garcia
-
/demos/life/reader.cpp [diff, log, file]
Streams were being created the wrong way (was using the copy
ctor which should not be used for any stream class)
- r7825: 2000-07-25 06:27:45 [GRG] Guillermo R. Garcia
-
/src/msw/window.cpp [diff, log, file]
Modified mouse ENTER/LEAVE events so that they also
carry information about the state of the mouse buttons
(they only had info about SHIFT and CTRL keys so far)
- r7820: 2000-07-24 13:28:01 [GRG] Guillermo R. Garcia
-
/src/common/strconv.cpp [diff, log, file]
Fixed broken compilation due to Ove's last nice changes :-(
- r7818: 2000-07-24 11:55:34 [GRG] Guillermo R. Garcia
-
/include/wx/defs.h [diff, log, file]
Corrected comment about Norlander headers (no changes to the code itself)
- r7797: 2000-07-21 05:32:07 [GRG] Guillermo R. Garcia
-
/src/common/timercmn.cpp [diff, log, file]
Changes for VISAGECPP (use _ftime to avoid clock skew bug)
- r7751: 2000-07-17 13:52:38 [GRG] Guillermo R. Garcia
-
/distrib/msw/tmake/g95.t [diff, log, file]
/src/msw/makefile.g95 [diff, log, file]
Added opengl32 to DLL libs
- r7736: 2000-07-11 05:27:57 [GRG] Guillermo R. Garcia
-
[WX_2_2_BRANCH] /demos/life/bitmaps/reset.xpm [diff, log, file]
Error in reset.xpm (it read new_xpm instead of reset_xpm
- r7731: 2000-07-10 06:08:05 [GRG] Guillermo R. Garcia
-
[WX_2_2_BRANCH] /demos/life/dialogs.cpp [diff, log, file]
Changed version number to 2.2
- r7730: 2000-07-10 05:58:08 [GRG] Guillermo R. Garcia
-
Click to show all 25 changes...
New files to add .lif pattern reading capabilities to Life
- r7696: 2000-07-05 14:08:20 [GRG] Guillermo R. Garcia
-
[WX_2_2_BRANCH] /src/common/timercmn.cpp [diff, log, file]
#pragma message, and not #pragma warning, for BC++
- r7694: 2000-07-05 05:45:25 [GRG] Guillermo R. Garcia
-
[WX_2_2_BRANCH] /src/msw/tooltip.cpp [diff, log, file]
New cygwins seem to have commctrl.h as well
- r7693: 2000-07-05 05:44:57 [GRG] Guillermo R. Garcia
-
[WX_2_2_BRANCH] /src/msw/fontenum.cpp [diff, log, file]
Replaced a complex MINGW / GCC version check with a #if wxUSE_NORLANDER_HEADERS
- r7692: 2000-07-05 05:43:28 [GRG] Guillermo R. Garcia
-
[WX_2_2_BRANCH] /src/common/timercmn.cpp [diff, log, file]
Re-added a few warnings. Please don't just shut them off,
drop me a line instead (guille@...)