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.

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

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

2008-07-09 23:05 VS, revision 54566

use iterators instead of c_str() in wxXmlResource::GetText()

2008-07-09 17:25 SN, revision 54565

Applied fix for wxGrid::ClearAttrCache (#9712).

2008-07-09 17:24 SN, revision 54564

Applied fix for wxGrid::ClearAttrCache (#9712).

2008-07-09 14:02 VZ, revision 54563

unescape the value of wxHyperlinkCtrl label (#9683)

2008-07-09 06:49 SC, revision 54562

adjusting endif comment to new #if

2008-07-09 02:40 VZ, revision 54560

some blind compilation fixes for legacy code (#9698)

2008-07-09 02:36 VZ, revision 54559

fix wxUniv/MSW build with wxUSE_MENUS==0 (#9694)

2008-07-09 02:32 VZ, revision 54558

show busy cursor in wxLaunchDefaultBrowser and add a new flag to avoid it (#9678)

2008-07-09 02:18 VZ, revision 54557

update the year in wx information dialog (#9701)

2008-07-09 02:16 VZ, revision 54556

add some output stream tests

2008-07-09 02:16 VZ, revision 54555

skip calls of TellI/TellO() if the stream is not seekable; more const-correctness

2008-07-09 02:05 VZ, revision 54554

use wxSocketBase::Initialize/Shutdown() instead of GSocket_Init/Cleanup()

2008-07-09 01:38 RD, revision 54553

Applied patch from Ticket #9563. Use just the rectangle of the widget with the focus when deciding if scrolling is needed, instead of the rect of the parent of the widget/child of the target window. This fixes some flickering when a panel of widgets is used inside the scrolled window, and also a total lack of scrolling if the focused widget is out of view but the upper-left corner of the panel is in view.

2008-07-09 01:37 RD, revision 54552

Applied patch from Ticket #9563. Use just the rectangle of the widget with the focus when deciding if scrolling is needed, instead of the rect of the parent of the widget/child of the target window. This fixes some flickering when a panel of widgets is used inside the scrolled window, and also a total lack of scrolling if the focused widget is out of view but the upper-left corner of the panel is in view.

2008-07-08 15:51 JS, revision 54549
  • D /wxWidgets/branches/SOC2008_WXWALLCTRL/wxWallCtrlProject-autosave.pjd

Remove auto-save file

2008-07-08 12:38 MMK, revision 54548

Implemented seeking functionality

2008-07-08 00:49 VZ, revision 54543

MSW compilation fix after last commit

2008-07-08 00:19 VZ, revision 54542

added (for now trivial) socket stream test

2008-07-07 20:21 RR, revision 54541

Minor corrections

2008-07-07 16:00 PC, revision 54523

gtk-universal build fixes

2008-07-07 13:17 SC, revision 54522

make sure mac pref files remain visible and named as before

2008-07-06 23:57 VZ, revision 54520

fix focus problems in picker controls under MSW which were due to not letting the system process kill focus for the text part of the control (#9687)

2008-07-06 18:34 RR, revision 54515

wxString doc corrections

2008-07-06 16:30 SN, revision 54514

Make AutoSizing in wxGrid's SetCol/RowSize work and use it from corresponding AutoSize functions. This fixes #4107.

2008-07-06 16:29 SN, revision 54513

Make AutoSizing in wxGrid's SetCol/RowSize work and use it from corresponding AutoSize functions. This fixes #4107.

2008-07-06 14:14 VZ, revision 54511

fix unused parameters warnings (#9529)

2008-07-06 14:04 VZ, revision 54510

avoid duplicated command events if a wxFrame-level handler called event.Skip() (#4757)

2008-07-06 13:40 VZ, revision 54509

added wxscintilla and wx_stc projects (#4378)

2008-07-06 02:21 VZ, revision 54504

take const address objects in wxSocketClient::Connect() and wxSocketBase::SetLocal()

2008-07-06 02:20 VZ, revision 54503

add a numeric column test

2008-07-06 00:26 VZ, revision 54501

remove mentions of pos attribute, it never worked and it's time to remove it

2008-07-06 00:25 VZ, revision 54500

don't use deprecated wxToolBar::AddTool() overload taking position parameters which don't do anything anyhow

2008-07-05 20:53 VZ, revision 54499

remove code for drawing icon of minimized window manually, this was only useful under NT 3.51 and earlier among all Win32 systems and I don't think we support that any more

2008-07-05 20:51 VZ, revision 54498

avoid duplicating wxWindow::HandleCommand() in wxFrame, only handle the commands for the frame menu bar elements there: this avoid generating duplicate events if a command event handler skips

2008-07-05 19:06 VS, revision 54497

reverted Robert's premature removal of deprecated 2.6 functions in r54490

2008-07-05 18:25 SN, revision 54496

Added missing include (#9625).

2008-07-05 18:23 SN, revision 54495

Added missing include (#9625).

2008-07-05 18:23 PC, revision 54494

mark long-deprecated methods as such, and don't use them in wx code

2008-07-05 18:05 SN, revision 54493

Experimental simplification of the code by using MWERKS version for all compilers.

2008-07-05 17:54 SN, revision 54492

Fixed Digital Mars breakage as suggested by Vadim on mailing list (#9619).

2008-07-05 17:38 SN, revision 54491

Added missing include (depending on configuration, see #9622).

2008-07-05 10:58 RR, revision 54490

Remove 2_6 compatibility code

2008-07-04 14:23 SC, revision 54486

changing condition to make sure we are not failing in case the min system is given as 10.3.9 ... solves #9693

2008-07-04 14:05 RR, revision 54485

Use t_str() instead of c_str()

2008-07-04 09:49 JS, revision 54484

Typo correction

2008-07-04 08:02 RR, revision 54483

Ticket #9689 (new defect) Opened 33 hours ago Documentation Corrections for \interface\wx\notebook.h

2008-07-04 07:56 RR, revision 54482

added wxString.t_str() and used it in filefn.cpp

2008-07-03 20:34 RR, revision 54481

Make wxMSW wxBase compile in UTF-8 mode

2008-07-03 17:20 MMK, revision 54480

Fixed DB project

2008-07-03 16:04 VZ, revision 54479

handle FNERR_INVALIDFILENAME which happens if an invalid file name is passed to wxFileDialog (#9688)

2008-07-03 15:42 VZ, revision 54478

support disabling items before adding them to the menu (#3423)

2008-07-03 15:37 VZ, revision 54477

don't ignore changes of empty string to 0 or vice versa in float grid cells (#2802)

2008-07-03 14:29 RR, revision 54476

wxMac wxDataViewCtrl no border patch

2008-07-03 13:44 RR, revision 54475

further xxx_str() clarification

2008-07-03 12:13 RR, revision 54474

Corrected c_str() docs

2008-07-02 14:45 VZ, revision 54465

don't use @true and @NULL inside of @code sections

2008-07-02 10:46 RR, revision 54464

Tried to make wxListBox::Update() work, typo corrected

2008-07-02 08:15 RR, revision 54463

Tried to make wxListBox::Update() work

2008-07-02 08:10 RR, revision 54462

#9675: wxDataViewModel::Reset() and scrollbar problem (wxMac)

2008-07-01 21:20 MMK, revision 54458

Code placed at correct location to allow Dialog Blocks to regenerate code without overwriting the sample program code.

2008-07-01 16:09 VZ, revision 54454

compilation fix for PCH-less build after last commit

2008-07-01 15:49 VZ, revision 54453

change not only the focus but also last remembered TLW focus in SetValue() to avoid focus being reset to the wrong radio button when TLW regains activation (#9676)

2008-07-01 13:44 VZ, revision 54451

use proper name for a contributor

2008-07-01 10:04 RR, revision 54450

Add code for parsing globs file in /usr/local as well

2008-07-01 09:59 RR, revision 54449

Add code for parsing globs file

2008-07-01 09:28 RR, revision 54448

Add stub for parsing globs file

2008-07-01 08:48 RR, revision 54447

Restore wxFile docs

2008-07-01 08:31 RR, revision 54446

Remaining conversion to read-only XDG MIME types code

2008-07-01 08:30 RR, revision 54445

Corrected mime types docs

2008-07-01 00:05 VZ, revision 54441

quote the arguments containing spaces or quotes correctly in wxExecute(char **) overload (#4115)

2008-06-30 23:48 VZ, revision 54440

remove unused exec.rc file

2008-06-30 23:37 VZ, revision 54439

fix a hang up in wxExecute(wxArrayString& output) overload (#4380)

2008-06-30 18:21 VZ, revision 54437

implement wxListCtrl::GetSubItemRect() for generic version and fix bug in it in wxMSW one; also added a test for it in the sample

2008-06-30 13:40 VZ, revision 54436

VC6 compilation fix: using access declaration can only be used with immediate base class members with this compiler

2008-06-30 13:35 VZ, revision 54435

VC8 compilation fix after last change (#9665)

2008-06-30 11:58 RR, revision 54434

Removed most of the pre-XDG MIME code from the Unix implementation, many speed-ups by simplification

2008-06-30 10:42 MMK, revision 54433

Updated DB project file

2008-06-30 09:42 JS, revision 54432

Further style preview fix

2008-06-30 09:42 JS, revision 54431

Further style preview fix

2008-06-30 09:39 JS, revision 54430

Compile fix

2008-06-29 22:11 VZ, revision 54426

blind fix for PCH-less build

2008-06-29 22:05 VZ, revision 54425

add Scintilla.iface to the distribution

2008-06-29 21:46 VZ, revision 54424

compilation fix for ASCII STL build (#9661)

2008-06-29 17:04 JS, revision 54423

Corrected problem of wrong paragraph receiving style in formatting dialog.

2008-06-29 17:03 JS, revision 54422

Corrected problem of wrong paragraph receiving style in formatting dialog.

2008-06-29 15:15 SN, revision 54421

Don't force ColWidth to always grow for wxGridCellAutoWrapStringRenderer (#1798)

2008-06-29 15:14 SN, revision 54420

Don't force ColWidth to always grow for wxGridCellAutoWrapStringRenderer (#1798)

2008-06-29 01:35 VZ, revision 54419

ensure that GetEditControl() returns something even if label editing was started by the user and not the program (#1325) [backport of r53831 from trunk]

2008-06-29 01:28 VZ, revision 54418

open the file for reading and writing in wx(F)FileStream, this class can't work otherwise (#3335) [partial backport of r54246 from trunk]

2008-06-29 01:21 VZ, revision 54417

use _get_timezone() under VC8 as _timezone is not available in all CRT versions (#4691)

2008-06-29 01:04 VZ, revision 54416

fix crash when vetoing label edit end due to a click outside of the text control (#8947) [backport of r51149 from trunk]

2008-06-29 00:50 VZ, revision 54415

fix handling of the keys in wxSpinCtrl (#9637)

2008-06-29 00:35 VZ, revision 54414

add a new menu for wxTextEntry-specific tests, currently it allows to check how auto-completion works (#9614)

2008-06-29 00:19 VZ, revision 54413

don't call SetInsertionPointToEnd() on read-only combobox in wxGridCellChoiceEditor::Reset() neither (this had been already fixed for StartEdit() before) (#8843)

2008-06-29 00:12 VZ, revision 54412

support wxListCtrl::GetViewRect() in report view too; test it in the sample (#9484)

2008-06-28 23:18 VZ, revision 54411

fix --disable-optimise configure option description (#9660)

2008-06-28 23:14 VZ, revision 54410

don't ignore changes of empty string to 0 or vice versa in float grid cells (#4764)

2008-06-28 20:52 VS, revision 54409

backported high-quality wxMSW printing to 2.8 (disabled by default, has to be enabled by changing wxUSE_HIGH_QUALITY_PREVIEW_IN_WXMSW to 1 in prntbase.cpp

2008-06-28 18:58 VZ, revision 54407

support wxDP_ALLOWNONE in generic wxDatePickerCtrl (#3164)

2008-06-28 18:56 VZ, revision 54406

forward port 2.8.8 changelog

2008-06-28 18:18 VZ, revision 54405

deprecate wxTE_AUTO_SCROLL as it's always on in the ports which support it anyhow (#2176)

2008-06-28 15:32 VS, revision 54404

split wxPrintPreviewBase::RenderPage() into helper methods in the same way its done on the trunk

2008-06-28 15:16 VS, revision 54403

backport of r53980: fixed wxHTML default font size for printing to be 12pt regardless of the platform

2008-06-28 01:49 VZ, revision 54400

don't activate items on Alt-Space or Alt-Enter (#9615)

2008-06-28 01:43 VZ, revision 54399

test for either Ctrl or Shift in MSWShouldPreProcessMessage() instead of Ctrl twice (#9620)

2008-06-28 01:40 VZ, revision 54398

don't call OnData() if OnEnter() rejected the drag (#9634)

2008-06-28 00:17 SN, revision 54397

Restricted column/row resizing in cell window to left button for consistency with label windows and because ending the resize is only handled in case of LeftUp() (Fixing #4212).

2008-06-28 00:10 SN, revision 54395

Restricted column/row resizing in cell window to left button for consistency with label windows and because ending the resize is only handled in case of LeftUp() (Fixing #4212).

2008-06-27 21:32 BP, revision 54393

#9605: Documentation Corrections for richtextctrl.h

2008-06-27 21:31 BP, revision 54392

#9589: Documentation Corrections for textctrl.h

2008-06-27 21:07 VZ, revision 54391

use wxIconizeEvent::IsIconized() instead of deprecated Iconized()

2008-06-27 18:23 BP, revision 54388

Forgot to export the environment variable so Doxygen picks it up for stripping the path.

2008-06-27 18:00 BP, revision 54387

Commit 3 of 3 for Doxygen path fixes, this one finally removes all 600+ unnecessary uses of @wxheader and @headerfile.

2008-06-27 16:47 BP, revision 54386

Part 2 of 3 commits bringing proper Doxygen path usage without use of @wxheader.

2008-06-27 16:22 BP, revision 54385

Moved all interface headers into a 'wx' subdirectory for proper use of Doxygen path settings.

2008-06-27 15:27 SC, revision 54384

use default fonts that have also bold and italic variants present on the system (CoreText does not synthesize font variants) fixes #4751

2008-06-27 14:14 RR, revision 54383

Added mostly empty wxLaunchDefaultApplication

2008-06-27 13:47 RR, revision 54382

Ticket #9641: wxBitmapComboBox_SetFont.patch, making it public

2008-06-27 13:45 RR, revision 54381

Fix warning

2008-06-27 13:19 RR, revision 54380

gtk wxStaticText and wxALIGN_CENTER_VERTICAL

2008-06-27 09:50 SC, revision 54379

was incorrectly forcing the font to 12 in most cases, fixes #4745

2008-06-27 06:31 BP, revision 54378

Separated out function grouping for less confusing parameter docs. (#9651)

2008-06-26 17:25 VZ, revision 54377

build fix for PCH-less build

2008-06-26 12:47 SC, revision 54376

updating help texts, fixes #9647

2008-06-26 12:44 VZ, revision 54375

still support wxNB_XXX and wxADJUST_MINSIZE in XRC files even if they're deprecated at C++ level, not all tools have been updated to not use them any more

2008-06-26 11:49 MMK, revision 54374

Implemented OnSize() and added unicode macros

2008-06-26 11:49 VZ, revision 54373

don't forget to output new line in wxMessageOutputStderr::Output() even if conversion to multibyte fails

2008-06-26 11:16 VZ, revision 54372

fix the wrong #ifdef WXWIN_COMPATIBILITY_2_8 checks, #if should be used (#9644)

2008-06-26 10:55 JS, revision 54371

Fixed bug whereby sash would disappear under left hand pane

2008-06-26 10:55 JS, revision 54370

Fixed bug whereby sash would disappear beneath left-hand pane

2008-06-26 07:19 SC, revision 54369

fixing an incorrect conversion path from utf8 to plain ascii instead of unicode, closes #9629

2008-06-26 07:09 SC, revision 54368

fixing an incorrect conversion path from utf8 to plain ascii instead of unicode, closes #9629

2008-06-25 09:04 SC, revision 54359

rename for docs as well

2008-06-25 08:38 JS, revision 54358

Allow an app to cut down start time by not doing unnecessary mime types initialisation

2008-06-25 08:37 JS, revision 54357

Documented filesys.no-mimetypesmanager

2008-06-25 08:36 JS, revision 54356

Allow an app to cut down start time by not doing unnecessary mime types initialisation

2008-06-25 08:35 JS, revision 54355

WinCE compile fix

2008-06-25 07:57 JS, revision 54354

Recorded GNOME MIME types fix

2008-06-25 07:52 JS, revision 54353

Gnome Mime type fix by scanning for .desktop files

2008-06-25 07:51 JS, revision 54352

Better extension extraction

2008-06-25 01:02 VZ, revision 54350

more wxBitmapType-related backward compatibility fixes

2008-06-24 23:43 VZ, revision 54349

provide deprectaed LoadFile() and FindHandler() overloads taking long, otherwise the existing code using long instead of wxBitmapType doesn't compile because of the ambiguity between long->wxBitmapType and long->wxString conversions (as these methods are also overloaded to take wxString)

2008-06-24 23:42 VZ, revision 54348

don't use deprecated wxIconizeEvent::Iconized()

2008-06-24 18:59 MMK, revision 54347

Modified rendering time and used arrow keys

2008-06-24 16:53 BP, revision 54346

Tagged 2.8.8 release from r54336 of WX_2_8_BRANCH.

2008-06-24 12:56 RR, revision 54344

Compilation

2008-06-24 12:48 RR, revision 54343

Next part of tree state icon patches

2008-06-24 06:48 PC, revision 54342

fix crash on exit, after hiding search tool then toggling tooltips

2008-06-23 22:49 VZ, revision 54339

wxLB_MULTIPLE is same as wxLB_EXTENDED in wxGTK2