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

2008-02-13 22:42 VZ, revision 51771

fix gcc format string warning and simplify the code a little as was already done in the trunk

2008-02-13 22:39 VZ, revision 51770

don't define HAVE_FSYNC if it's already defined (as it can happen when using Cygwin with configure)

2008-02-13 22:36 VZ, revision 51769

initialize the colour to be invalid if the name passed to the ctor is invalid (bug 1891235)

2008-02-13 22:14 KO, revision 51768

Experimental branch to allow us to play with changes needed for wxWebKit using the 2.8 branch.

2008-02-13 21:32 VS, revision 51767

split wxSizer::Fit() into ComputeFittingWindow/ClientSize() that only does computations and Fit() that applies the result to the window

2008-02-13 20:30 DE, revision 51766

Fix (at least) slider action messages in GC mode. Copyright 2008 Software 2000 Ltd.

2008-02-13 20:24 DE, revision 51765

If aWxString.fn_str() is used as the argument to wxStat then wxStat should not be used at all because wxStat is looking for a wxChar* that it will pass through wxConvFile whereas fn_str() effectively returns a char* suitable for use directly with the real function.

2008-02-13 19:26 JS, revision 51764

Make sure paragraph style is reset before applying a new style

2008-02-13 19:26 JS, revision 51763

Make sure paragraph style is reset before applying a new style

2008-02-13 18:42 SN, revision 51762

Blind fix to improve wx-config's Bourne shell compatibility.

2008-02-13 18:41 SN, revision 51761

Blind fix to improve wx-config's Bourne shell compatibility.

2008-02-13 17:18 JS, revision 51760

Implemented selection using shift left click

2008-02-13 17:17 JS, revision 51759

Implemented selection using shift left click

2008-02-13 16:57 PC, revision 51758

make sure client area is refreshed after last child frame is closed

2008-02-13 16:28 JS, revision 51757

Fixed undo batching

2008-02-13 16:27 JS, revision 51756

Fixed undo batching

2008-02-13 15:37 VS, revision 51755

removed no longer used src/iodbc directory

2008-02-13 14:47 VS, revision 51754

removed unused g_focusWindowLast

2008-02-13 14:24 JS, revision 51753

Further fixes, for selected text display and new paragraph insertion

2008-02-13 14:24 JS, revision 51752

Further fixes, for selected text display and new paragraph insertion

2008-02-13 08:35 SC, revision 51750

fixing wxSystemColour conversion

2008-02-13 06:58 PC, revision 51747

backport r51481, fix for GTK assertion from gtk_widget_set_colormap

2008-02-13 04:39 PC, revision 51746

fix assert at startup on non-MSW

2008-02-12 23:06 VZ, revision 51744

use platform-specific styles in xTR_DEFAULT_STYLE but don't impose them forcefully in wxGenericTreeCtrl ctor as this prevents people from using them even if they explicitly want to do it

2008-02-12 22:53 VZ, revision 51743

use const char*, not char*, for string literals to avoid gcc warnings

2008-02-12 22:46 VZ, revision 51742

add forgotten file needed by the last change to the sample

2008-02-12 20:13 VS, revision 51741

added wxWindow::HandleAsNavigationKey() helper for handling (not only) TAB key in custom controls

2008-02-12 17:05 JS, revision 51740

Fixed several style, paste and undo bugs Added a reload function to the sample for quickly restoring original text

2008-02-12 17:05 JS, revision 51739

Fixed several style, paste and undo bugs Added a reload function to the sample for quickly restoring original text

2008-02-12 15:53 VS, revision 51738

use ClientToWindowSize/WindowToClientSize

2008-02-12 15:49 VS, revision 51737

added wxWindow::ClientToWindowSize and WindowToClientSize helpers

2008-02-12 13:16 SC, revision 51735

adding filename conversion for wxStat

2008-02-12 11:29 VS, revision 51734

silence warnings about <headers>

2008-02-12 10:49 SC, revision 51733

fixing SetShape's bridging between RgnHandle and HiShapeRef

2008-02-12 07:25 JJ, revision 51674

Update setup for OpenVMS

2008-02-12 04:03 PC, revision 51673

build fix for non-MSW

2008-02-12 00:06 VZ, revision 51672

use wxLanguageInfo::GetLocaleName() instead of Desscription which can't be passed to _create_locale() (except that it works for a few standard languages by random coincidence)

2008-02-11 23:57 VZ, revision 51671

simplify SETLOCALE_FAILS_ON_UNICODE_LANGS-related code

2008-02-11 23:48 VZ, revision 51670

remove half a dozen #ifndef __WXWINCE__ as they dont seem to be necessary now (wxSetlocale() is defined in wxcrt.h for all platforms); if the compilation for CE is broken it must be fixed by providing wxSetlocale() stub for it instead of writings tons of #ifdefs!

2008-02-11 23:40 VZ, revision 51669

add wxLanguageInfo::GetLocaleName(), this simplifies the current code and will be used with wxXLocale

2008-02-11 23:23 VZ, revision 51668

avoid duplication in the code by refactoring LCID creation from wxLanguageInfo::WinLang and WinSublang in a member function

2008-02-11 22:34 VZ, revision 51667

initialize m_backgroundBrush to an invalid brush instead of wxTRANSPARENT_BRUSH, this shouldn't change anything but avoids unneeded initialization

2008-02-11 22:30 VZ, revision 51666

use #ifdef __WXMAC__, not #if

2008-02-11 21:12 VZ, revision 51665

document that wxTLW::SetSize() is affected by SetSizeHints()

2008-02-11 21:01 FM, revision 51664

use WXLIBPOSTFIX inside the define-*-name tags so to make the generated makefiles much shorter.

2008-02-11 20:51 VZ, revision 51663

use correct WXDLLIMPEXP_FWD_CORE instead of WXDLLIMPEXP_FWD_BASE for wxWindow forward declaration

2008-02-11 20:23 VZ, revision 51662

update m_lastcount correctly in wxBufferedInputStream::Read() when using the buffer associated with another stream and not created by this one

2008-02-11 20:16 VZ, revision 51661

set selection anchor to the focused item in SetItemState()

2008-02-11 17:39 PC, revision 51660

fix for glib critical errors when closing an mdi child

2008-02-11 16:03 VZ, revision 51659

implement wxListBox::EnsureVisible() in wxGTK; add a test for it to the widgets sample

2008-02-11 15:19 SC, revision 51658

applying 1890924

2008-02-11 14:22 VZ, revision 51657

compilation fix for wxUSE_STL==1

2008-02-11 14:21 SC, revision 51656

applying 1890924

2008-02-11 08:59 CE, revision 51652

see http://thread.gmane.org/gmane.comp.lib.wxwidgets.devel/97537

2008-02-11 08:29 CE, revision 51651

fix SF bug 1890890

2008-02-11 07:29 DE, revision 51650

When Cocoa sends [tabView:didSelectTabViewItem:] create a page changed event instead of a page changing event and actually send it. Copyright 2008 Software 2000 Ltd.

2008-02-11 01:24 VZ, revision 51649

make wxGenericCollapsiblePane a wxControlContainer to allow keyboard navigation to and inside it

2008-02-11 01:23 VZ, revision 51648

docs for wxXLocale (should have been part of r51632)

2008-02-11 01:21 VZ, revision 51647

use CanAcceptFocus() instead of CanAcceptFocusFromKeyboard() when checking if we should TAB into a child because the latter is not recursive and we do want to TAB into panels which don't have focus themselves but have children that do

2008-02-11 00:14 VZ, revision 51645

no changes, just do the case of m_winLastFocused to wxRadioButton once instead of four times in wxMSW radiobutton navigation hack fragment

2008-02-11 00:09 VZ, revision 51644

don't use parent window of a TLW in HandleOnNavigationKey(), even if it's apparently harmless it's wrong to involve the parent TLW in the code navigating inside this one

2008-02-10 23:43 VZ, revision 51643

log Unicode data correctly, extract the logging code in MyConnectionBase class instead of quadriplicating it

2008-02-10 23:27 VZ, revision 51642

pass correct data size to DdeClientTransaction() in Unicode build

2008-02-10 21:17 MW, revision 51641

Fix IA64 VC++ 8 Stable to be a full build.

2008-02-10 21:15 MW, revision 51640

Fix for systems with old non-POSIX awk.

2008-02-10 17:45 VZ, revision 51639

mention wxXLocale

2008-02-10 17:43 VZ, revision 51638

cast char values to unsigned char before passing them to CRT functions as MSVC CRT asserts if passed a negative value

2008-02-10 17:38 VZ, revision 51637

fixed wxXLocale(wxLanguage) ctor under Windows, use it instead of ctor from locale string in the test

2008-02-10 17:18 VZ, revision 51636

fix compilation with VC7

2008-02-10 17:16 VZ, revision 51635

return int, not wxUniChar, from wxTo{upp,low}er_l() for consistency with the standard tow{upp,low}er()

2008-02-10 17:10 VZ, revision 51634

compilation fix for wxUSE_XLOCALE == 0

2008-02-10 17:08 VZ, revision 51633

add check for wxUSE_XLOCALE (and also wxUSE_INTL which wasn't checked for some reason)

2008-02-10 17:03 VZ, revision 51632

add wxXLocale class and wxIsxxx_l() and wxToxxx_l() functions (heavily modified and extended patch 1874287)

2008-02-10 14:41 VZ, revision 51631

Unicode compilation fix after last change

2008-02-10 13:26 VZ, revision 51630

update the samples to use new (non-deprecated) wxGLCanvas API; added more comments; some cleanup (modified patch 1882679)

2008-02-10 12:56 VZ, revision 51629

fix compilation after last change: wxCFStringRef doesn't exist in 2.8, wxMacCFStringHolder does

2008-02-10 10:59 DE, revision 51628

Move stackwalk.cpp and epolldispatcher.cpp to BASE_UNIX_AND_DARWIN_(SRC|HDR) from BASE_UNIX_(SRC|HDR). The stackwalk.cpp works fine on Leopard (which added backtrace) and epolldispatcher may work on a future OS X that implements epoll. Leave configure to determine whether or not the code is appropriate for Darwin systems. That is its purpose!

2008-02-10 07:20 DE, revision 51627

Add wxCocoa to the list of ports which don't need wxColour to derive from wxGDIObject.

2008-02-10 00:12 VZ, revision 51626

backported Mac version of GetInfo() from trunk

2008-02-10 00:11 VZ, revision 51625

use correct locale in GetInfo() under Mac (slightly modified patch 1884290)

2008-02-09 23:57 VZ, revision 51624

added wxDebugContext::SetShutdownNotifyFunction() (patch 1887210)

2008-02-09 23:51 VZ, revision 51623

don't close UDP socket if it receives an empty datagram (patch 1885472)

2008-02-09 23:37 VZ, revision 51622

add GetMDIParent() and use it to reduce the number of casts in the MDI code (patch 1885462)

2008-02-09 23:35 VZ, revision 51621

get wxSYS_COLOUR_MENU from a menu bar and not from a button (patch 1887197)

2008-02-09 23:30 VZ, revision 51620

use generic file picker in wxFLP_SAVE case as the native one doesn't allow to select non-existent files

2008-02-09 22:52 VZ, revision 51619

fix signed/unsigned comparison warning

2008-02-09 15:41 VZ, revision 51618

remove extraneous IncRef() from wxRichTextFontTable ctor (replaces patch 1884594)

2008-02-09 15:32 VZ, revision 51617

added alpha support to wxImage::Paste() (patch 1883497, bug 1831612)

2008-02-09 15:22 VZ, revision 51616

don't lose the contents of the combobox if it was set to a value not in a list and a popup has been opened and closed (patch 1883474)

2008-02-09 15:10 VZ, revision 51615

don't hardcode grey/white colours for non-MSW/Mac in InitColours(), use wxSystemSettings for all ports (even if some of them, such as wxGTK, still hardcode white for wxSYS_COLOUR_3DHILIGHT) (replaces patch 1883386)

2008-02-09 14:40 VZ, revision 51614

add wxUSE_WEAKREF (modified partially applied patch 1870445)

2008-02-09 11:04 VS, revision 51613

disable console targets for WinCE

2008-02-09 10:39 VS, revision 51612

fixed wxGTK assert when closing wxMessageDialog

2008-02-08 13:55 BIW, revision 51600

maximize bug fixed

2008-02-08 13:55 BIW, revision 51599

maximize bug fixed

2008-02-08 09:12 DE, revision 51595

Fix tracking rectangles in 64-bit build by remembering the tag as the 64-bit integer that it is in that mode.

2008-02-08 08:17 VZ, revision 51592

don't redeclare wxYield() if it had been already declared to fix g++ warnings with -Wredundant-decls

2008-02-08 08:06 DE, revision 51591

Reword the comment again. I forgot to save before committing.

2008-02-08 08:04 DE, revision 51590

Change the __NEXT_RUNTIME__ test to __OBJC_GC__ which is what I really meant but I had to look up which preprocessor define was emitted by -fobjc-gc. Also improve the comments a bit.

2008-02-08 04:24 DE, revision 51586

Avoid warnings in the Objective-C uniquifying code when running in GC mode.