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-07-20 22:11 VZ, revision 54729

fix (harmless) Win64-compatibility MSVC warning

2008-07-20 22:05 VZ, revision 54728

handle C++ exception in EVT_{TIMER,IDLE} handlers (#9768)

2008-07-20 12:57 VZ, revision 54727

really fix compilation for PCH-less builds

2008-07-20 12:37 VZ, revision 54726

add a missing backslash (#9766)

2008-07-20 12:35 VZ, revision 54725

compilation fix for PCH-less builds

2008-07-19 23:14 VZ, revision 54723

big wxURI cleanup; it now handles Unicode characters correctly (#3874)

2008-07-19 20:07 VZ, revision 54722

remove the just added assertEquals(time_t, long) overload, it results in infinite recursion and crash if time_t is the same type as long

2008-07-19 19:59 VZ, revision 54721

check that string passed to FromUTF8() is valid even in release build, this is safer; add a separate FromUTF8Unchecked() which can be used for maximal efficiency

2008-07-19 16:17 MMK, revision 54710

Created custom event

2008-07-19 15:36 VZ, revision 54709

no changes, just removed an unnecessary semicolon at top level

2008-07-19 05:33 VZ, revision 54708

compilation fix for builds without wxHAS_RAW_KEY_CODES

2008-07-19 01:53 VZ, revision 54704

already escaped backslash shouldn't escape the following quote in ConvertStringToArgs()

2008-07-19 01:45 VZ, revision 54703

fix bug with wxCSConv("ASCII")

2008-07-19 01:37 VZ, revision 54702

no changes, just added some explanatory comments for wxCSConv members

2008-07-19 01:34 VZ, revision 54701

backport fix for wxCSConv(wxFONTENCODING_SYSTEM) creation from trunk: use system encoding for DoCreate(), not name which is not handled correctly for ASCII case

2008-07-19 00:32 VZ, revision 54700

return ISO8859-1 from wxLocale::GetSystemEncoding() for C locale, as in trunk, otherwise wxCSConv with default encoding doesn't work at all

2008-07-18 23:36 VZ, revision 54699

disable compilation of test broken by wxMimeTypesManager changes

2008-07-18 23:33 VZ, revision 54698

compilation fix for PCH-less build

2008-07-18 23:08 VZ, revision 54697

simplify the test, don't reuse the same macro for different things

2008-07-18 23:07 VZ, revision 54696

get rid of special WX_ASSERT_FOO_EQUAL macros by defining CppUnit::assertEquals() overloads for wx types

2008-07-18 22:22 VZ, revision 54695

mention compatibility implications of wxExecute() quoting changes; don't change quoting of already quoted arguments in 2.8 for compatibility; also fix handling of empty arguments as a side effect (see #4115)

2008-07-18 13:56 VZ, revision 54693

remove duplicate SetIcon(sample_xpm) call which didn't even compile under MSW

2008-07-18 13:47 VZ, revision 54692

compilation fix for eVC4: include commctrl.h explicitely

2008-07-18 12:56 JS, revision 54691

Tab removal

2008-07-18 12:55 JS, revision 54690

Tab removal

2008-07-18 08:17 JS, revision 54689

Fixed initial layout bug when using dynamically created bitmap on wxGTK

2008-07-18 08:06 MW, revision 54688

Fix gzip class factory to return gzip not zlib stream.

2008-07-18 02:45 PC, revision 54676

fix masking of disabled bitmaps with some themes

2008-07-18 00:47 VZ, revision 54675

really correct detecting the end of UTF-7-encoded strings

2008-07-17 23:45 VZ, revision 54673

fix bug introduced in r54646: we still need to count the embedded NULs when converting the entire NUL-terminated string to wchar_t, only the trailing NUL shouldn't be counted

2008-07-17 23:24 VZ, revision 54672

make test failures easier to debug by using more informative failure messages

2008-07-17 23:01 VZ, revision 54671

don't run the tests which can't succeed in ANSI build; remove the tests for wxUSE_WCHAR_T, it's always 1 now; test MB2WC conversions in Unicode build too (it only tested WC2MB for some reason)

2008-07-17 23:01 VZ, revision 54670

properly detect missing data at the end of UTF-7-encoded segment and fail the conversion in this case

2008-07-17 20:03 VZ, revision 54669

overwrite incorrect last commit (which did exactly what its comment said it couldn't do as it was breaking ABI compaitiblity...)

2008-07-17 19:59 VZ, revision 54668

use int32 values in invalid wxDateTime ctor after r54663 fixes to wxLongLong under LP64 platforms (unfortunately we can't do the same thing as in trunk as this would break ABI because default-constructed wxDateTime objects in the programs compiled against old headers would become different from the ones defined in the new library)

2008-07-17 19:44 VZ, revision 54667

CP-xxx and MS-yyy iconv identifiers actually don't have dashes in them (this fixes CP932 unit test failure under FreeBSD where iconv doesn't have WINDOWS-932)

2008-07-17 19:43 VZ, revision 54666

implement wxCSConv::From/ToWChar() correctly for Latin-1 (#9739)

2008-07-16 16:06 VZ, revision 54665

emphasize the fact that GetSelectedCols/Rows() is not sufficient to get the selection (#4732)

2008-07-16 15:53 VZ, revision 54664

allow using SetFont(wxNullFont) to reset the font as per documented behaviour (#3238)

2008-07-16 15:22 VZ, revision 54663

fix wxLongLong for LP64 platforms [backport of r45256 from trunk] (#9745)

2008-07-16 15:21 VZ, revision 54662

add GetLo/Hi() test

2008-07-16 08:59 SC, revision 54661

adding missing include for non-precomp builds, and grouping headers, solves #9744

2008-07-16 03:02 VZ, revision 54660

disable the test declarations and not just the definitions if we don't have strtoll()

2008-07-16 02:59 VZ, revision 54659

disable test which doesn't work without setenv()

2008-07-16 02:49 VZ, revision 54658

_beginthreadex() entry point should really return unsigned and not wxUIntPtr even if this means that it's impossible to return pointers from wxThread::Entry() under Win64 (#9727)

2008-07-16 02:39 VZ, revision 54657

fix a typo in wxUSE_UNICODE test when choosing between strtoull and wcstoull; include wchar.h when testing for the latter

2008-07-16 02:30 VZ, revision 54656

disable the test if we have no strtoll()

2008-07-16 02:19 VZ, revision 54655

fix signed/unsigned comparison warning by using CPPUNIT_ASSERT_EQUAL instead of CPPUNIT_ASSERT

2008-07-16 02:18 VZ, revision 54654

removed a test which doesn't really work

2008-07-16 01:54 VZ, revision 54653

backport fixes for the fix for transparency in static bitmaps (r51824) from trunk (r54651 and r54652)

2008-07-16 01:47 VZ, revision 54652

check for comctl32.dll version and not OS one as an app running XP without manifest is still incapable of drawing bitmaps with alpha (still related to #8684)

2008-07-16 01:30 VZ, revision 54651

use parent background and not ours unless one was explicitly set when manually drawing (related to #8684)

2008-07-16 01:08 VZ, revision 54650

clean up wxBitmapButton::Create(); override MSWGetStyle() (#4804)

2008-07-16 00:53 VZ, revision 54649

use wxCmdLineParser::ConverStringToArgs() instead of (incorrectly) duplicating it here (#9743)

2008-07-16 00:49 VZ, revision 54648

implement flag for Unix-like behaviour in wxCmdLineParser::ConverStringToArgs()

2008-07-16 00:48 VZ, revision 54647

added wxConvISO8859_1 test

2008-07-15 23:57 VZ, revision 54646

fix the output length returned from cWC2MB/MB2WC() to be consistent with From/ToWChar(); fix off by NUL-length bug in wxMBConv implementation of From/ToWChar() in terms of legacy WC2MB/MB2WC() (which are still used in wxMBConv_wxwin) that this uncovered; added a simple test for the bugs the old code resulted in which could be easily seen with wxConvISO8859_1 (see #9739)

2008-07-15 21:29 JS, revision 54645

Fixed wxTreebook tree control border style

2008-07-15 21:28 JS, revision 54644

Fixed wxTreebook tree control style

2008-07-15 18:00 VZ, revision 54643

use CPPUNIT_ASSERT_EQUAL(x,y) instead of CPPUNIT_ASSERT(x==y) to better see test failures

2008-07-15 17:38 VZ, revision 54642

use CPPUNIT_ASSERT_EQUAL(x,y) instead of CPPUNIT_ASSERT(x==y) to better see test failures

2008-07-15 17:31 VZ, revision 54641

test ok in the record reading loop as otherwise we never exit from it if there is an invalid character in the record

2008-07-15 16:09 VZ, revision 54640

remove wxCSConv::MB2WC/WC2MB, implement Latin-1 fallback conversion in To/FromWChar() themselves; this is more efficient and removing the old code fixes off by 1 bugs in it (related to #9739)

2008-07-15 15:22 VZ, revision 54639

don't pass pointers to unaligned DWORDs to avoid 64 bit build problems (#9726)

2008-07-15 14:36 VZ, revision 54638

fix changing size of merged cells (#9736)

2008-07-15 13:50 VZ, revision 54637

don't mention deprecated wxRESIZE_BOX (#9735)

2008-07-14 21:13 VS, revision 54621

compilation fix after SetClippingRegion changes (patch #9696 by Anders Larsen)

2008-07-14 21:01 VZ, revision 54620

only initialize sockets if IPC implementation is socket-based

2008-07-14 15:12 VZ, revision 54617

PCH-less build fix

2008-07-14 10:00 JS, revision 54616

Documented wxRTC fixes

2008-07-14 02:34 VZ, revision 54615

fix heap corruption bug: use delete[] to delete a buffer allocated with new[], not delete

2008-07-14 02:19 VZ, revision 54614

added a simple IPC unit test

2008-07-14 02:04 VZ, revision 54613

relay out the control after deleting any page, not just the last one (#9684); also extract the size event sending code in a separate function to be able to replace it with something better easier later

2008-07-14 02:03 VZ, revision 54612

calling Notify() from child thread is ok -- as long as you do it from one and the same thread all the time

2008-07-14 01:20 VZ, revision 54611

removed automatically generated code for frame layout with human-readable version; some other cleanup

2008-07-13 22:13 KO, revision 54610

Revert accidently committed experimental code.

2008-07-13 18:20 VZ, revision 54609

define {first,second}_type in the struct declared by _WX_DECLARE_PAIR too for compatibility with std::pair, we can avoid #ifdefs in the code using the hash then (#9725)

2008-07-13 18:16 VZ, revision 54608

set wxKeyEvent::m_uniChar correctly in the events generated by generic wxListCtrl (#4581)

2008-07-13 18:06 VZ, revision 54607

added wxFlexGridSizer::Add{Row,Col}Growable() (#2603)

2008-07-13 18:02 VZ, revision 54606

mention that GetItemRect() is new in 2.9.0

2008-07-13 18:01 VZ, revision 54605

relay out the control after deleting any page, not just the last one (#9684); also extract the size event sending code in a separate function to be able to replace it with something better easier later

2008-07-13 17:52 VZ, revision 54604

don't assert when GetSubItemRect() is called in non-report view if it's called with wxLIST_GETSUBITEMRECT_WHOLEITEM

2008-07-13 17:34 VZ, revision 54603

add back parameter dropped during Doxygen conversion (#9697)

2008-07-13 17:31 VZ, revision 54602

correct wrong example of using wxSizerFlags::Border() (#9699)

2008-07-13 17:28 VZ, revision 54601

added wxVListBox::GetItemRect() (#9711)

2008-07-13 16:33 VZ, revision 54600

use wxString::Format() instead of hardcoding floating point numbers string representation, this doesn't work in locales using decimal comma (#9714)

2008-07-13 16:29 VZ, revision 54599

more compilation fixes for wxUSE_STL && wxUSE_DEBUG_CONTEXT build (#9698)

2008-07-13 12:13 JS, revision 54598

Shift+Return now puts the cursor on the next line Fixed GetContiguousPlainText bug that caused wrapping problem

2008-07-13 12:11 JS, revision 54597

Shift+Return now puts the cursor on the next line Fixed GetContiguousPlainText bug that caused wrapping problem

2008-07-12 02:43 VZ, revision 54593

run tests several times with different socket flags

2008-07-12 02:30 VZ, revision 54592

check that the stream raises no error other than EOF when it's supposed to be at EOF

2008-07-12 02:29 VZ, revision 54591

enable the rest of wxSocketStream tests now that they pass

2008-07-12 02:28 VZ, revision 54590

add wxSocket::IsClosed(), use it to implement Eof() in wxSocketStream

2008-07-12 02:17 VZ, revision 54588

no changes, just removed broken #if 0'd out code

2008-07-12 02:12 VZ, revision 54587

no changes, just removed the unnecessary inline keywords

2008-07-12 02:01 VZ, revision 54585

remove unused private wxSocketBase::m_lastError

2008-07-10 02:28 RD, revision 54574

ShouldAccountFor was a 2.8 only change. Use IsShown instead.

2008-07-10 02:07 VZ, revision 54573

make wxApp::Yield() exception-safe

2008-07-10 01:33 RD, revision 54569

Bump subrelease number

2008-07-10 01:32 RD, revision 54568

If an item is hidden, don't check it for overflows.