Changelogs

Overview

These changelogs reflect the history of all files in the Subversion repository. The changelog has been generated at 2016-05-09 08:38:04

Changes per page:

25 50 100 250 500 1000 2000

Changelog for wxWidgets (70435 changes):

2002-12-09 18:06 MBN, revision 18165

Only build HelpGen in wxBase, since it will #error (this will maybe fix some tinderboxes...).

2002-12-09 16:45 VZ, revision 18164

backported nicer icon (without extra pixels which become garbage when scaled down to 16*16) from the trunk

2002-12-09 16:43 VZ, revision 18163

removed garbage pixels from the icon

2002-12-09 16:42 VZ, revision 18162

fixed warning about unused var

2002-12-09 16:41 VZ, revision 18161

fixed annoying beep when pressing space/return in the tree

2002-12-09 15:52 JS, revision 18160

Convert filename to URL

2002-12-09 15:42 JS, revision 18159

Should only add // under MSW -- not on Unix, not on Mac.

2002-12-09 15:26 CE, revision 18158

fix bug with treectrl sample

2002-12-09 15:13 CE, revision 18157

fix bug with treectrl sample

2002-12-09 15:10 JS, revision 18156

Added horse3.ani

2002-12-09 14:45 JS, revision 18155

Removed redundant m_server init

2002-12-09 14:44 JS, revision 18154

Ifdefed m_server

2002-12-09 14:35 JS, revision 18153

Reverted the _n__ fix for now.

2002-12-09 14:20 JS, revision 18152

The wxMAKE_UNIQUE_ASSERT_NAME fix for VC++ does not work for MetroWerks CW.

2002-12-09 11:27 ROL, revision 18151
  • D /wxWidgets/branches/WX_2_4_BRANCH/wxPython/wxPython/tools/XRCed/myxml.py

source moved to tree.py

2002-12-09 11:22 JS, revision 18150

Applied patch [ 632115 ] Fixed internationalization on tooltips wxMac's wxTooltip assumed that text was always PC encoded, and always converted the string using wxMacMakeMacStringFromPC(). This worked fine for English characters, but multi-byte encoded languages such as Japanese (SJIS) because garbled. I've added a check for "wxApp::s_macDefaultEncodingIsPC" before performing the conversion similar to other controls. Nilesh Agarwalla

2002-12-09 11:20 ROL, revision 18149

*** empty log message ***

2002-12-09 11:14 JS, revision 18148

Applied patches by Scott Pleiter: [ 643866 ] small wxGrid API changes adds GetValue to the gridcelleditors to facilitate querying values from the editors, also changes several methods to virtuals to simplify inheritance. [ 643867 ] wxGrid cell LNF & behaviour patch Enables the grid to render its cells grey when the grid control is disabled. Also fixes several problems when making the gridcelleditors visible. Improves the layout of multi-line row/column labels. Changes the CellEditor show from a MOUSE_DOWN to a MOUSE_UP, this stops the editor starting when creating a selection beginging in the currently selected cell. [ 643868 ] wxGrid rendering tweaks, improves look. Draw the row/column using system colours. Change the default wxGrid settings to have a more neutral starting point - grey lines, non-bold label font, black/white selection etc.

2002-12-09 11:01 JS, revision 18147

Small WinCE mods from Marco

2002-12-09 10:57 JS, revision 18146

Added script to convert project files to DOS format.

2002-12-09 10:50 JS, revision 18145

Applied patch [ 649284 ] Fix wxODBC to work with MySQL 2.x The current sample/db fails to build indexes with MyODBC v2.50.39 This is due to two problems: (1) wxDb::ModifyColumn() created a SQL statement that was not correctly formed for MySQL. This problem caused wxDbTable::CreateIndex() to fail to set the columns that are going to indexes to be NOT NULL. I fixed this by added a special case for MySQL. (2) When creating an Index on a VARCHAR column, MySQL requires a key length to be specified. wxDbTable::CreateIndex() current does not do this. I fixed this problem by adding code to do this. The attached patch file patches dbtable.cpp and db.cpp on the 2.5 branch. gor Mikolic-Torreira

2002-12-09 10:44 JS, revision 18144

Applied patch [ 649590 ] fixes bug 611264: wxFileDialog entry In bug 611264 I reported that typing a filename into a multiple selection file dialog failed. The file returned was "..". I discovered that this was because the previous directory folder came up automatically selected when the dialog was created. Then, I discovered a related bug. If any file or folder was selected, then that was the file which was returned regardless of what was typed in. To fix the problem I added an EVT_TEXT handler which deselects everything that is selected when the user types. The handler does not deselect anything unless the user actually types something. This patch implements the fix. John Skiff

2002-12-09 10:31 JS, revision 18143

Applied patch [ 642174 ] Stop TOOL_WINDOWS stealing focus When frames with the wxFRAME_TOOL_WINDOW style ( i.e. a floating toolbar frame) is shown it is activated, taking focus from the main application window. This patch stops frames with the wxFRAME_TOOL_WINDOW from being activated when shown. Scott Pleiter

2002-12-09 10:26 JS, revision 18142

Applied patch [ 650078 ] Add better checking to wxComboBox This patch adds extra checks, checks to see and report if the provided item index is valid. An other thing: - IMHO wxComboBox::GetSelection() was wrong, I corrected this (now it behaves the same as wxMSW, don't know about wxGTK and others...). Hans Van Leemputten (hansvl)

2002-12-09 10:20 JS, revision 18141

Applied patch [ 648042 ] Erase background error When erasing the background with a transparent background the logical origin of the provided DC is (re) set, but not restored to the old value. Restoring the old value is needed because the DC is/can be shared with the real draw code... This patch solves problems like mentioned in bug report #635217 and problems like controls (like radio controls etc) that disappear when moving the mouse over them or clicking on them... Hans Van Leemputten