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):

2006-10-19 19:55 JS, revision 42131

Added missing WXDLLIMPEXP_RICHTEXT symbol

2006-10-19 16:22 JS, revision 42130

Spin control usage correction

2006-10-19 16:15 VZ, revision 42129

added samples/internat/ar/* files

2006-10-19 16:07 VZ, revision 42128

update from Hakki Dogusan

2006-10-19 15:56 JS, revision 42127

Compilation fixes

2006-10-19 15:55 VZ, revision 42126

removed non-existing richedit.dmc

2006-10-19 15:28 VZ, revision 42125

added include/wx/gtk/private/string.h

2006-10-19 15:25 VZ, revision 42124

fixed X11 Unicode build compilation

2006-10-19 15:12 VZ, revision 42123

must use PKG_PROG_PKG_CONFIG before PKG_CHECK_MODULES; fixes configure for Unicode wxX11 build

2006-10-19 15:04 SC, revision 42122

using graphics context for core graphics switch

2006-10-19 15:02 VZ, revision 42121

split the incompatible changes section in silent changes and the others

2006-10-19 14:42 VZ, revision 42120

extracted wxGtkString in a separate file, it's also needed by wxX11

2006-10-19 14:39 VZ, revision 42119

Main change is that we now close X11 display on program exit: as this couldn't be done in wxApp dtor (too early), a special module had to be created for it and module dependencies added for the other modules which have to be cleaned up while the display is still open. Also a few minor formatting changes and removed a couple of unused variables from wxApp.

2006-10-19 14:09 JS, revision 42118

Added style organiser dialog and list style editor page

2006-10-19 14:05 JS, revision 42117

Separated out list formatting into new menu. Added use of style organiser dialog. Demonstrated style organiser being used as Bullets & Numbers dialog.

2006-10-19 14:04 JS, revision 42116

Added a list style editor page to the formatting dialog. Added a style organiser dialog, which can be used to browse for and apply styles and can be limited to show one of the three style types, or all three. Added a font name cache since it's an expensive operation that's used frequently by the rich text dialogs. Added ability to switch off tooltips for new dialogs (off by default). Improved the previews. Pressing tab or shift-tab at the start of a list item now demotes or promotes the item.

2006-10-19 13:09 VZ, revision 42115

added newline at end of file

2006-10-19 12:30 RR, revision 42114

Made wxStreamBase::IsOk() virtual; Overrride in file streams to test foe base class and for correctly opened files.

2006-10-19 12:12 VZ, revision 42113

fixed the problem in 2 last commits

2006-10-19 12:08 RR, revision 42112

Fix mem leak.

2006-10-19 12:06 ABX, revision 42111

Rescale images automatically with informations about internal requirements (Jaakko Salli).

2006-10-19 11:58 VZ, revision 42110

fix memory leak in wxGetTempFileName(const wxString&, wxString&) overload; also define wxGetTempFileName(const wxString&, wxChar *) overload in terms of the other one and not vice versa

2006-10-19 07:43 MR, revision 42109

Include defs.h before including wxchar.h to make init.h self-contained (able to include this header in applications as the only one). Before with only include wxchar.h it was missing ATTRIBUTE_PRINTF and other things due to wxchar.h not including defs.h because of defs.h including wxchar.h itself. We probably don't need to include wxchar.h anymore in init.h then, but I don't want to rely on wxchar.h being always included from defs.h (if we can rely on that, please change if appropriate)

2006-10-19 02:53 PC, revision 42108

fix memory leak in Freeze

2006-10-19 00:40 KO, revision 42107

Several wxWebKitCtrl enhancements/fixes. Including: - new methods for increasing/decreasing text size, getting selection, getting/setting scroll position, printing, enabling editing, and running JavaScripts on the page. - added new event (wxWebKitBeforeLoadEvent) for catching, and possibly vetoing, load events before they occur. - wxWebKitCtrl now fires mouse events for certain events that it was eating before. This improves wxSplitterWindow resizing behavior. - refactoring of the sizing logic to move the Cocoa view. I've tested this with splitter windows, panels, notebooks and all position correctly with this.