wxWidgets.git
10 years agoadd other known types for gdk_pixbuf_save()
Paul Cornett [Thu, 8 Aug 2013 05:59:18 +0000 (05:59 +0000)] 
add other known types for gdk_pixbuf_save()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74646 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoTry native method first in LoadFile() and SaveFile()
Paul Cornett [Thu, 8 Aug 2013 05:43:24 +0000 (05:43 +0000)] 
Try native method first in LoadFile() and SaveFile()
closes #15394

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74645 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoMake wxOwnerDrawnComboBox::DoGetBestSize() twice as fast.
Václav Slavík [Wed, 7 Aug 2013 17:33:42 +0000 (17:33 +0000)] 
Make wxOwnerDrawnComboBox::DoGetBestSize() twice as fast.

Don't call the very expensive wxComboCtrlBase::DoGetBestSize() method
when not needed - it calls wxComboCtrlBase::DoGetSizeFromTextSize(),
which is very expensive.

Also fix the code so that it doesn't apply GetSizeFromTextSize() twice
(once in the base class' DoGetBestSize(), once here).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74644 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoCompilation fix for wxMSW with wxUSE_MSGBOX_HOOK==0.
Vadim Zeitlin [Wed, 7 Aug 2013 15:44:56 +0000 (15:44 +0000)] 
Compilation fix for wxMSW with wxUSE_MSGBOX_HOOK==0.

Include wx/fontutil.h unconditionally, it's needed outside message box hook
code.

Closes #15395.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74643 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoCompilation fix to propgrid sample after r74628.
Vadim Zeitlin [Wed, 7 Aug 2013 12:08:10 +0000 (12:08 +0000)] 
Compilation fix to propgrid sample after r74628.

Use wxMax() and wxMin() instead of std::max() and min().

Also work around wrong for loop scoping for VC6.

See #15368.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74642 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoDocument light grey colour handling in wxMSW wxBitmap::LoadFile().
Vadim Zeitlin [Wed, 7 Aug 2013 11:08:38 +0000 (11:08 +0000)] 
Document light grey colour handling in wxMSW wxBitmap::LoadFile().

For historical/compatibility reasons we handle this colour as transparent in
wxMSW when loading the bitmaps from resources, but this is rather not obvious
for the new users, so document it and provide a way of compensating for this
in the documentation as well.

Closes #15371.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74641 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoDefine __VISUALC__ for ICC under Windows again.
Vadim Zeitlin [Wed, 7 Aug 2013 11:08:33 +0000 (11:08 +0000)] 
Define __VISUALC__ for ICC under Windows again.

During the refactoring of r74496, the logic of the check for Intel compiler
was slightly altered resulting in not defining __VISUALC__ for it any longer
which broke compilation with it.

Restore this definition now to fix it, even though it could admittedly be
better to explicitly check for __INTELC__ in the places where we currently
only check for __VISUALC__ and reserve the latter only for the case when we
are really using MSVC.

Closes #15359.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74640 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoAdd wxFileName::SetPermissions().
Vadim Zeitlin [Wed, 7 Aug 2013 11:08:28 +0000 (11:08 +0000)] 
Add wxFileName::SetPermissions().

This is a simple wrapper for the POSIX chmod().

Closes #12951.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74639 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoUpdate Travis configuration to run tests and build more configurations.
Vadim Zeitlin [Wed, 7 Aug 2013 11:08:21 +0000 (11:08 +0000)] 
Update Travis configuration to run tests and build more configurations.

Install libcppunit-dev in order to be able to run the unit tests (at least the
non-GUI ones for now).

Also build in several configurations: shared/static, multilib/monolithic and
also STL. This should help to find problems appearing only in some specific
build variants.

Closes #15369.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74638 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoDon't document wxSortedArrayString as deriving from wxArrayString.
Vadim Zeitlin [Wed, 7 Aug 2013 11:08:17 +0000 (11:08 +0000)] 
Don't document wxSortedArrayString as deriving from wxArrayString.

This is no longer the case since quite some time.

Closes #15374.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74637 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoDon't use DDEExec registry key in wxMSW wxExecute() if it's empty.
Vadim Zeitlin [Wed, 7 Aug 2013 11:08:12 +0000 (11:08 +0000)] 
Don't use DDEExec registry key in wxMSW wxExecute() if it's empty.

Some file types have DDEExec subkey in the registry but no value for it, don't
use DDE for launching the files of these types in this case as this only
results in errors.

Closes #15388.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74636 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoFix column sorting UI in wxDataViewCtrl under wxOSX.
Vadim Zeitlin [Tue, 6 Aug 2013 17:36:17 +0000 (17:36 +0000)] 
Fix column sorting UI in wxDataViewCtrl under wxOSX.

Use -outlineView:didClickTableColumn: delegate method instead of
mouseDownInHeaderOfTableColumn: one to ensure that:

(a) We don't sort the column if it's being dragged/resized (closes #15340).
(b) We sort the column on mouse up, not down (closes #15386).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74635 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoFix a couple of spelling mistakes in the documentation.
Vadim Zeitlin [Tue, 6 Aug 2013 17:36:12 +0000 (17:36 +0000)] 
Fix a couple of spelling mistakes in the documentation.

Closes #15382.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74634 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoUse RIAA wrapper for wxSpinCtrl event disabling in wxGTK.
Vadim Zeitlin [Tue, 6 Aug 2013 17:00:10 +0000 (17:00 +0000)] 
Use RIAA wrapper for wxSpinCtrl event disabling in wxGTK.

The use of wxSpinCtrlEventDisabler class ensures that we never forget to
reenable the events after disabling them.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74633 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoReflect changes in stc.cpp in stc.cpp.in from which it's generated.
Vadim Zeitlin [Tue, 6 Aug 2013 17:00:04 +0000 (17:00 +0000)] 
Reflect changes in stc.cpp in stc.cpp.in from which it's generated.

This should have been part of r74596, see #15353.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74632 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoDon't generate any events from wxSpinCtrl and wxSpinCtrlDouble methods.
Vadim Zeitlin [Tue, 6 Aug 2013 17:00:00 +0000 (17:00 +0000)] 
Don't generate any events from wxSpinCtrl and wxSpinCtrlDouble methods.

After the changes of r53758 wxMSW didn't generate any wxEVT_TEXT events but
this was still the case for the generic version (and hence for
wxSpinCtrlDouble under MSW too) and wasn't documented.

Fix all versions to avoid sending events for programmatic actions, add unit
tests checking this behaviour and document it.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74631 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoAdd test for absence of events from wxSpinCtrlDouble ctor.
Vadim Zeitlin [Tue, 6 Aug 2013 16:59:54 +0000 (16:59 +0000)] 
Add test for absence of events from wxSpinCtrlDouble ctor.

Run the same NoEventsInCtor() test as we already had for wxSpinCtrl for
wxSpinCtrlDouble as well.

Unfortunately currently there is no way to reuse the tests between these two
classes, we should refactor these test cases to use a common
SpinCtrlTestCaseBase<T> base class.

See #15375 which fixed the underlying bug.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74630 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoDocument wxTreeCtrl::GetItemFont() behaviour for items without font.
Vadim Zeitlin [Tue, 6 Aug 2013 16:59:49 +0000 (16:59 +0000)] 
Document wxTreeCtrl::GetItemFont() behaviour for items without font.

Explain that this method returns wxNullFont if no font was set for the item.

Closes #15390.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74629 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoAdd wxPropertyGridPageState::GetColumnFullWidth().
Vadim Zeitlin [Tue, 6 Aug 2013 13:05:42 +0000 (13:05 +0000)] 
Add wxPropertyGridPageState::GetColumnFullWidth().

This method allows to get the full width needed by wxPropertyGrid and is
useful for determining the space to allocate for it, e.g. when creating a
popup showing the property grid, as shown by the changes to the sample.

Closes #15368.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74628 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoFix wxPropertyGrid::GetPropertyRect when the last item is collapsed.
Vadim Zeitlin [Tue, 6 Aug 2013 13:05:36 +0000 (13:05 +0000)] 
Fix wxPropertyGrid::GetPropertyRect when the last item is collapsed.

Return the real height instead of -1.

Closes #15367.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74627 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoDutch translations update from Gideon van Melle.
Vadim Zeitlin [Tue, 6 Aug 2013 12:31:58 +0000 (12:31 +0000)] 
Dutch translations update from Gideon van Melle.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74626 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoRewrite ConvertToGreyscale() and ConvertToDisabled()
Paul Cornett [Tue, 6 Aug 2013 06:05:38 +0000 (06:05 +0000)] 
Rewrite ConvertToGreyscale() and ConvertToDisabled()
They do almost the same thing, so use almost the same code.
Fixes ConvertToDisabled() modifying its own data.
Closes #15389

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74625 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoprevent infinite loop if gtk_menu_popup() fails, fixes #15387
Paul Cornett [Mon, 5 Aug 2013 17:10:58 +0000 (17:10 +0000)] 
prevent infinite loop if gtk_menu_popup() fails, fixes #15387

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74624 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agofollow up parent chain to properly support modal dialog parents, see #15383
Stefan Csomor [Mon, 5 Aug 2013 08:59:38 +0000 (08:59 +0000)] 
follow up parent chain to properly support modal dialog parents, see #15383

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74623 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoComment-only update
Julian Smart [Sun, 4 Aug 2013 07:58:47 +0000 (07:58 +0000)] 
Comment-only update

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74622 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoremove ancient defines left over from GTK1
Paul Cornett [Sat, 3 Aug 2013 04:48:46 +0000 (04:48 +0000)] 
remove ancient defines left over from GTK1
and some minor cleanup

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74621 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoremove obsolete check for GTK 2.6
Paul Cornett [Sat, 3 Aug 2013 04:39:45 +0000 (04:39 +0000)] 
remove obsolete check for GTK 2.6

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74620 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agofix Gtk-CRITICAL errors when deleting wxDirButton
Paul Cornett [Fri, 2 Aug 2013 17:01:03 +0000 (17:01 +0000)] 
fix Gtk-CRITICAL errors when deleting wxDirButton

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74619 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agodefer calling SetCanFocus() on wxGTK until after creation
Paul Cornett [Wed, 31 Jul 2013 16:03:51 +0000 (16:03 +0000)] 
defer calling SetCanFocus() on wxGTK until after creation

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74618 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoApplied #15375 to stop event-sending in generic wxSpinCtrl ctor (eco)
Julian Smart [Wed, 31 Jul 2013 10:47:03 +0000 (10:47 +0000)] 
Applied #15375 to stop event-sending in generic wxSpinCtrl ctor (eco)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74617 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agodon't pass false as a wxWindowID
Paul Cornett [Wed, 31 Jul 2013 05:56:17 +0000 (05:56 +0000)] 
don't pass false as a wxWindowID

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74616 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agofix tab traversal of wxStaticBox children, closes #15376
Paul Cornett [Wed, 31 Jul 2013 05:35:13 +0000 (05:35 +0000)] 
fix tab traversal of wxStaticBox children, closes #15376

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74615 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoTurkish translations update from Kaya Zeren.
Vadim Zeitlin [Sun, 28 Jul 2013 22:58:11 +0000 (22:58 +0000)] 
Turkish translations update from Kaya Zeren.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74614 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agofirst attempt at adding the minimal set needed for dead-key support, see #15345
Stefan Csomor [Sun, 28 Jul 2013 17:36:23 +0000 (17:36 +0000)] 
first attempt at adding the minimal set needed for dead-key support, see #15345

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74613 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoadapting to new event version
Stefan Csomor [Sun, 28 Jul 2013 14:52:47 +0000 (14:52 +0000)] 
adapting to new event version

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74612 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agochanging to allow for 2x ramping up NSApp run
Stefan Csomor [Sun, 28 Jul 2013 14:37:37 +0000 (14:37 +0000)] 
changing to allow for 2x ramping up NSApp run

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74611 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agousing Run of base class
Stefan Csomor [Sun, 28 Jul 2013 14:32:35 +0000 (14:32 +0000)] 
using Run of base class

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74610 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoWork around missing mode_t definition with ICC.
Vadim Zeitlin [Sun, 28 Jul 2013 13:08:23 +0000 (13:08 +0000)] 
Work around missing mode_t definition with ICC.

Just handle it in the same way as MSVC.

Closes #15361.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74609 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agousing Run of base class
Stefan Csomor [Sat, 27 Jul 2013 20:22:40 +0000 (20:22 +0000)] 
using Run of base class

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74608 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoMake wxComboCtrlBase::Set*groundColour() methods public.
Václav Slavík [Sat, 27 Jul 2013 19:39:37 +0000 (19:39 +0000)] 
Make wxComboCtrlBase::Set*groundColour() methods public.

SetForegroundColour() and SetBackgroundColour() were -- presumably
accidentally -- protected in wxComboCtrlBase, even though they are
documented public virtual methods of wxWindow. This prevented their
use from user code.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74607 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoskip apple options
Stefan Csomor [Sat, 27 Jul 2013 19:21:14 +0000 (19:21 +0000)] 
skip apple options

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74606 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agowiring event loop callbacks
Stefan Csomor [Sat, 27 Jul 2013 19:19:39 +0000 (19:19 +0000)] 
wiring event loop callbacks

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74605 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agobracketing for correct builds
Stefan Csomor [Sat, 27 Jul 2013 19:15:38 +0000 (19:15 +0000)] 
bracketing for correct builds

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74604 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoOSX adaptions
Stefan Csomor [Sat, 27 Jul 2013 19:00:25 +0000 (19:00 +0000)] 
OSX adaptions

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74603 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoRemove all lines containing cvs/svn "$Id$" keyword.
Vadim Zeitlin [Fri, 26 Jul 2013 16:02:46 +0000 (16:02 +0000)] 
Remove all lines containing cvs/svn "$Id$" keyword.

This keyword is not expanded by Git which means it's not replaced with the
correct revision value in the releases made using git-based scripts and it's
confusing to have lines with unexpanded "$Id$" in the released files. As
expanding them with Git is not that simple (it could be done with git archive
and export-subst attribute) and there are not many benefits in having them in
the first place, just remove all these lines.

If nothing else, this will make an eventual transition to Git simpler.

Closes #14487.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoRemove wxUniversal configuration from the MSVC 10 project files.
Vadim Zeitlin [Fri, 26 Jul 2013 15:27:51 +0000 (15:27 +0000)] 
Remove wxUniversal configuration from the MSVC 10 project files.

As these configurations are not present in the automatically generated files
any more, remove them from the manually created ones too.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74601 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoFix duplicate symbol link errors in wxMSW wxTextEntry code.
Vadim Zeitlin [Fri, 26 Jul 2013 10:38:39 +0000 (10:38 +0000)] 
Fix duplicate symbol link errors in wxMSW wxTextEntry code.

Don't include <initguid.h> too soon, as this affects the headers included
after it instead of just our own uses of DEFINE_GUID() as intended.

This resulted in link errors because of duplicate definitions of the many
standard GUIDs when using MinGW for which we include, for whatever reason,
shlguid.h.

This fixes the change of r67573.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74600 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoDisable tests in Travis configuration.
Vadim Zeitlin [Thu, 25 Jul 2013 23:36:07 +0000 (23:36 +0000)] 
Disable tests in Travis configuration.

As cppunit is not available, building tests fails.

Also disable optimizations in an attempt to make the build faster as we risk
being killed because it takes so long.

Finally, test compilation of the minimal sample using the installed library
for completeness.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74599 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoAdd a configuration file for Travis CI system.
Vadim Zeitlin [Thu, 25 Jul 2013 21:55:17 +0000 (21:55 +0000)] 
Add a configuration file for Travis CI system.

Try to use Travis in addition to buildbot to see if it can be useful for us.

Closes #15355.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74598 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoAllow using custom method names in wxHTTP.
Vadim Zeitlin [Thu, 25 Jul 2013 21:55:13 +0000 (21:55 +0000)] 
Allow using custom method names in wxHTTP.

Add wxHTTP::SetMethod().

Also simplify the code by determining the method to use in Connect() instead
of doing it in BuildRequest() itself.

Get rid of the now unused wxHTTP_Req enum.

Closes #15354.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74597 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoFix build with wxUSE_FFILE=0.
Vadim Zeitlin [Thu, 25 Jul 2013 21:55:06 +0000 (21:55 +0000)] 
Fix build with wxUSE_FFILE=0.

Add the missing "#if wxUSE_FFILE" checks and add fallbacks to wxFile if it's
available.

Closes #15353.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74596 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoDefine wxLongLong_t for Intel compiler.
Vadim Zeitlin [Thu, 25 Jul 2013 21:54:58 +0000 (21:54 +0000)] 
Define wxLongLong_t for Intel compiler.

It supports the same __int64 type and printf() format specifier for it as
MSVC does under Windows.

Closes #15359.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74595 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoDon't crash when creating wxStaticBox in wxGTK.
Vadim Zeitlin [Thu, 25 Jul 2013 21:54:53 +0000 (21:54 +0000)] 
Don't crash when creating wxStaticBox in wxGTK.

Since r74585, wxWindow::SetCanFocus() is called from wxStaticBoxBase ctor,
i.e. before the real window is created, and this results in a crash in wxGTK
where SetCanFocus() needs a valid widget.

Fix this simply by doing nothing in SetCanFocus() if the widget is not created
yet as this should result in the same behaviour as before r74585. This doesn't
seem like the right thing to do, however, and we should probably remove this
call from wxStaticBoxBase ctor and do it in wxStaticBox implementation itself
instead.

Closes #15358.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74594 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agowiring OnInit on osx to a later point in event processing
Stefan Csomor [Wed, 24 Jul 2013 06:14:48 +0000 (06:14 +0000)] 
wiring OnInit on osx to a later point in event processing

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74592 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agosupport for iPhone callbacks
Stefan Csomor [Tue, 23 Jul 2013 20:11:59 +0000 (20:11 +0000)] 
support for iPhone callbacks

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74591 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoadding OnLaunched
Stefan Csomor [Tue, 23 Jul 2013 17:57:05 +0000 (17:57 +0000)] 
adding OnLaunched

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74590 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agouse GTK-specific method to delete selection
Paul Cornett [Tue, 23 Jul 2013 14:41:14 +0000 (14:41 +0000)] 
use GTK-specific method to delete selection

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74589 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoCompilation fix for PCH-less build after r74586.
Vadim Zeitlin [Tue, 23 Jul 2013 13:18:30 +0000 (13:18 +0000)] 
Compilation fix for PCH-less build after r74586.

Don't use wxWindow methods in wx/container.h, move AcceptsFocus()
implementation to containr.cpp.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74588 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoDocument wxKill(wxSIGTERM) reliance on having an open window in wxMSW.
Vadim Zeitlin [Tue, 23 Jul 2013 12:44:36 +0000 (12:44 +0000)] 
Document wxKill(wxSIGTERM) reliance on having an open window in wxMSW.

wxKill(wxSIGTERM) doesn't work if the child process has no open windows as it
doesn't have anything to post the WM_QUIT message to.

Document this and point out that wxKill(wxSIGKILL) still works in this case.

Closes #15356.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74587 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoFix tab navigation bug with radio boxes without enabled items.
Vadim Zeitlin [Tue, 23 Jul 2013 12:44:33 +0000 (12:44 +0000)] 
Fix tab navigation bug with radio boxes without enabled items.

There was a bug similar to the one in the preceding commit with radio boxes
under wxMSW too: if all radio box buttons were disabled (or hidden, although
this should be much more rare in practice, unlike the disabled case which was
deemed to be rare in r74583 commit message but turned out to actually happen),
the radio box still pretended to accept focus but didn't really do it.

Fix this by allowing to override wxWindow::CanBeFocused() and do it in
wxRadioBox to check whether we have any enabled visible items.

Also add a check for CanBeFocused() to wxControlContainer code.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74586 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoFix tab navigation bug with static boxes without enabled children.
Vadim Zeitlin [Tue, 23 Jul 2013 12:44:29 +0000 (12:44 +0000)] 
Fix tab navigation bug with static boxes without enabled children.

wxControlContainer::AcceptsFocusFromKeyboard() returned true even if the
control didn't have any currently enabled -- and hence accepting focus --
children. This resulted in strange wxEVT_NAVIGATION_KEY propagation as it
unexpectedly wasn't handled in the control which pretended to accept focus and
instead bubbled up back into the parent, resulting in the focus returning to
the first child of the parent instead of skipping the static box with disabled
children and going to the next enabled child.

Fix this by checking that we have children that can be focused right now and
not only children that are focusable. Notice that this doesn't take care of
calling wxWindow::SetCanFocus() correctly when the children enabled/disabled
state changes so there might still be other problems, notably under wxGTK
where SetCanFocus() does something non-trivial, but it at least improves
things under wxMSW.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74585 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agomerge DoDrawText() and DoDrawRotatedText() into one function
Paul Cornett [Tue, 23 Jul 2013 05:13:32 +0000 (05:13 +0000)] 
merge DoDrawText() and DoDrawRotatedText() into one function

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74584 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoFix tab navigation into radio boxes in wxMSW.
Vadim Zeitlin [Tue, 23 Jul 2013 00:43:33 +0000 (00:43 +0000)] 
Fix tab navigation into radio boxes in wxMSW.

Radio boxes refused to take focus from keyboard as their
wxControlContainer::AcceptsFocusFromKeyboard() always returned false because
the base wxStaticBox class disabled setting the focus to the control itself
and wxRadioBox doesn't have any children at wx level in wxMSW.

Fix this by reenabling "self focus" in wxRadioBox to make it possible to
accept focus from keyboard. This is not ideal as it doesn't take into account
e.g. radio boxes without any items or with all items disabled or hidden, but
this should be rare and would require virtualizing all children access at
wxControlContainer level, i.e. would be quite non-trivial so don't do this for
now as this, at least, fixes the navigation in common/normal case.

Also remove the unnecessary AcceptsFocus() override from wxRadioBox as this is
now done at wxControlContainer level.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74583 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoNo real changes, just refactor wxControlContainer code a little.
Vadim Zeitlin [Tue, 23 Jul 2013 00:43:29 +0000 (00:43 +0000)] 
No real changes, just refactor wxControlContainer code a little.

Extract the call to wxWindow::SetCanFocus() into a separate
UpdateParentCanFocus() function as it can be necessary to do it from places
other than UpdateCanFocusChildren() too.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74582 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoRearrange Windows checks in wx/platform.h to be more logical.
Vadim Zeitlin [Mon, 22 Jul 2013 23:37:24 +0000 (23:37 +0000)] 
Rearrange Windows checks in wx/platform.h to be more logical.

Use __WINDOWS__ symbol as the primary symbol indicating Windows instead of
using all of _WIN32, __WIN32__ and __WINDOWS__.

Also automatically define __WINDOWS__ if __WXMSW__ is defined as this port
only can be used under Windows and doing it like this fixes compilation in the
case when the platform ends up being not defined at all, closes #15342.

Finally, don't assume Windows by default but give an error if we can't detect
the platform. This shouldn't happen in practice but seems a safer thing to do
if it ever does happen.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74581 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agofurther routing into wxApp
Stefan Csomor [Mon, 22 Jul 2013 18:33:01 +0000 (18:33 +0000)] 
further routing into wxApp

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74580 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agococoa wiring
Stefan Csomor [Mon, 22 Jul 2013 16:18:39 +0000 (16:18 +0000)] 
cocoa wiring

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74579 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agowiring osx native notification during launch
Stefan Csomor [Mon, 22 Jul 2013 16:17:27 +0000 (16:17 +0000)] 
wiring osx native notification during launch

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74578 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agouse pango_matrix_scale() to scale text
Paul Cornett [Mon, 22 Jul 2013 15:32:00 +0000 (15:32 +0000)] 
use pango_matrix_scale() to scale text

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74577 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoFix wxWebView documentation warnings.
Steve Lamerton [Sun, 21 Jul 2013 10:30:22 +0000 (10:30 +0000)] 
Fix wxWebView documentation warnings.

See #15346.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74575 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoAdd functor-taking overload of CallAfter().
Václav Slavík [Sun, 21 Jul 2013 10:05:03 +0000 (10:05 +0000)] 
Add functor-taking overload of CallAfter().

This is a generalization of the existing method-calling overloads.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74574 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoDon't assume that KeySym is always defined as long in wxGTK.
Vadim Zeitlin [Thu, 18 Jul 2013 10:07:18 +0000 (10:07 +0000)] 
Don't assume that KeySym is always defined as long in wxGTK.

Apparently this is not the case when using Wayland and using "%ld" to print it
out results in an assert failure.

Closes #15351.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74573 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoFix interface definition of GetMouseCursorAt
Robin Dunn [Wed, 17 Jul 2013 19:25:13 +0000 (19:25 +0000)] 
Fix interface definition of GetMouseCursorAt

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74572 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoJust forward Stricmp() in wx/string.h to wxCRT_StricmpA().
Vadim Zeitlin [Wed, 17 Jul 2013 17:27:20 +0000 (17:27 +0000)] 
Just forward Stricmp() in wx/string.h to wxCRT_StricmpA().

Don't redo the tests already done in wx/wxcrtbase.h in wx/string.h too,
especially as they were not done correctly there (they didn't take into
account the case of MinGW in strict ANSI mode). Just call wxCRT_StricmpA().

This also allows us to get rid of HAVE_STRCASECMP_IN_STRING[S]_H tests in
configure.

Closes #15349.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74571 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoSet mouse cursor correctly over image map links in wxHTML.
Vadim Zeitlin [Wed, 17 Jul 2013 17:27:14 +0000 (17:27 +0000)] 
Set mouse cursor correctly over image map links in wxHTML.

The cursor didn't change to a link one when the mouse was over link areas in
an image map.

Fix this by generalizing wxHtmlCell::GetMouseCursor() into GetMouseCursorAt().

Closes #15350.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74570 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoCheck the number of points in the image map in wxHTML.
Vadim Zeitlin [Wed, 17 Jul 2013 17:27:09 +0000 (17:27 +0000)] 
Check the number of points in the image map in wxHTML.

Don't crash if an <area> element is incorrect and doesn't have the required
number of coords attributes.

Closes #15348.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74569 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoNo changes, just remove an extra pair of braces in wxHTML code.
Vadim Zeitlin [Wed, 17 Jul 2013 17:27:04 +0000 (17:27 +0000)] 
No changes, just remove an extra pair of braces in wxHTML code.

See #15348.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74568 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoHandle wxALWAYS_SHOW_SB in wxOSX.
Vadim Zeitlin [Wed, 17 Jul 2013 17:27:00 +0000 (17:27 +0000)] 
Handle wxALWAYS_SHOW_SB in wxOSX.

Initialize m_[hv]ScrollBarAlwaysShown to true if this flag is given when
creating the window.

Closes #15344.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74567 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoMention more announcement channels in the release making instructions.
Vadim Zeitlin [Wed, 17 Jul 2013 12:57:44 +0000 (12:57 +0000)] 
Mention more announcement channels in the release making instructions.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74566 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoRemove more exclusions from Inno Setup file.
Vadim Zeitlin [Wed, 17 Jul 2013 12:57:41 +0000 (12:57 +0000)] 
Remove more exclusions from Inno Setup file.

Some excluded entries were not-existent anyhow (.cvsignore, wxPython, *.pch)
while others could be useful to have (misc).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74565 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoDon't exclude tests from wxMSW-Setup.exe.
Vadim Zeitlin [Wed, 17 Jul 2013 12:57:38 +0000 (12:57 +0000)] 
Don't exclude tests from wxMSW-Setup.exe.

The tests are useful to have to be able to check some functionality.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74564 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoExclude "osx" files, not "mac" ones, from Inno Setup file.
Vadim Zeitlin [Wed, 17 Jul 2013 12:57:35 +0000 (12:57 +0000)] 
Exclude "osx" files, not "mac" ones, from Inno Setup file.

"mac" subdirectories don't exist any more.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74563 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoRemove redundant lines from Inno Setup file.
Vadim Zeitlin [Wed, 17 Jul 2013 12:57:32 +0000 (12:57 +0000)] 
Remove redundant lines from Inno Setup file.

We don't need to handle the documentation files separately when they are
already taken care of together with everything else anyhow.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74562 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoDocument the release scripts really used for making releases.
Vadim Zeitlin [Wed, 17 Jul 2013 12:57:29 +0000 (12:57 +0000)] 
Document the release scripts really used for making releases.

End the polite fiction that build/tools/create-archive.py is used to build the
release because it isn't and all the last releases were built using different
scripts. Document their use in more details.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74561 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoRemove Inno Setup file dependency on c:\daily path.
Vadim Zeitlin [Wed, 17 Jul 2013 12:57:26 +0000 (12:57 +0000)] 
Remove Inno Setup file dependency on c:\daily path.

Generate the output file in the parent of the sources directory and take care
of copying it to c:\daily in bld_chm_exe.bat itself.

This allows to use wxwidgets.iss without that batch file and also on systems
without c:\ drive at all.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74560 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoUse "INNO" env var in Inno Setup script only if it's defined.
Vadim Zeitlin [Wed, 17 Jul 2013 12:57:23 +0000 (12:57 +0000)] 
Use "INNO" env var in Inno Setup script only if it's defined.

Just use the sources directory itself if %INNO% is not defined. In fact, I
think we could always use the source directory, actually, but just in case
there was some reason to do it like this, keep using %INNO% if it is defined.

Also check that WXW_VER environment variable that we use is, in fact, defined.

FIX: Use relative path, not %WXWIN% in ISS script.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74559 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoUpdate binaries release notes for 2.9.5.
Vadim Zeitlin [Wed, 17 Jul 2013 12:57:21 +0000 (12:57 +0000)] 
Update binaries release notes for 2.9.5.

Correct the compiler versions used and update the checksums.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74558 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoUpdate SHA1 sums for 2.9.5 release files.
Vadim Zeitlin [Wed, 17 Jul 2013 12:57:18 +0000 (12:57 +0000)] 
Update SHA1 sums for 2.9.5 release files.

Add CHM and wxMSW setup, remove Headers.7z which is in binaries subdirectory.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74557 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoAdd a test for eol-native file existence in the release script.
Vadim Zeitlin [Wed, 17 Jul 2013 12:57:15 +0000 (12:57 +0000)] 
Add a test for eol-native file existence in the release script.

Otherwise it could silently create a distribution with the files with wrong
EOLs.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74556 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoMention that wxWidgets-x.y.z_Headers.7z must be uploaded to binaries subdir.
Vadim Zeitlin [Wed, 17 Jul 2013 12:57:13 +0000 (12:57 +0000)] 
Mention that wxWidgets-x.y.z_Headers.7z must be uploaded to binaries subdir.

This file goes with the binaries, not the sources. Also fix its extension.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74555 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoMake it possible to use svn-find-native-eols script without svn checkout.
Vadim Zeitlin [Wed, 17 Jul 2013 12:57:07 +0000 (12:57 +0000)] 
Make it possible to use svn-find-native-eols script without svn checkout.

This should make it simpler to use it for other people.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74554 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agofixing parameter name
Stefan Csomor [Wed, 17 Jul 2013 10:46:09 +0000 (10:46 +0000)] 
fixing parameter name

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74552 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoUpdated release notes for 2.9.5.
Vadim Zeitlin [Tue, 16 Jul 2013 19:16:45 +0000 (19:16 +0000)] 
Updated release notes for 2.9.5.

Change the version and update sha1sums.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74551 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoAdd manually created VC10 project and solution files for the library.
Vadim Zeitlin [Tue, 16 Jul 2013 15:47:14 +0000 (15:47 +0000)] 
Add manually created VC10 project and solution files for the library.

These files were obtained by importing the VC9 files and then setting up the
dependencies correctly in the solution. This is just a temporary solution and
we'll hopefully generate them with bakefile-1 for the 3.0 release but for now
this is better than nothing.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74549 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoFix insertion of radio menu items in wxOSX wxMenu.
Vadim Zeitlin [Tue, 16 Jul 2013 14:10:39 +0000 (14:10 +0000)] 
Fix insertion of radio menu items in wxOSX wxMenu.

Deal correctly with updating the indices when a radio item is inserted into an
existing radio group (which wasn't done previously and resulted in a unit test
failure in MenuTestCase::RadioItems()) and also with inserting the normal
items before an existing radio group as the stored indices were not updated
correctly.

The code is still ugly and it probably wouldn't be a bad idea to reuse
wxMenuRadioItemsData used in wxMSW for similar purposes, but at least the unit
tests pass now.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74548 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoAllow unsetting wxMenuItem as start of radio group too.
Vadim Zeitlin [Tue, 16 Jul 2013 14:10:35 +0000 (14:10 +0000)] 
Allow unsetting wxMenuItem as start of radio group too.

This must be called if another radio item is inserted before the current
starting one.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74547 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoNo changes, just fix some comments in wxOSX wxMenu header.
Vadim Zeitlin [Tue, 16 Jul 2013 14:10:32 +0000 (14:10 +0000)] 
No changes, just fix some comments in wxOSX wxMenu header.

Mostly clarify DoInsertOrAppend() comment, the "is"/"if" typo made it rather
unclear.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74546 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoNo changes, just renamed "pItem" to "item" in wxOSX menu code.
Vadim Zeitlin [Tue, 16 Jul 2013 14:10:29 +0000 (14:10 +0000)] 
No changes, just renamed "pItem" to "item" in wxOSX menu code.

Get rid of this pseudo-Hungarian notation and make the naming of the variables
consistent across the whole file.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74545 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoGet rid of wxMenu::m_startRadioGroup in wxOSX.
Vadim Zeitlin [Tue, 16 Jul 2013 14:10:26 +0000 (14:10 +0000)] 
Get rid of wxMenu::m_startRadioGroup in wxOSX.

This code was probably copied from wxUniv but was wrong as we can't rely on
the items being always inserted in order. This commit on its own fixes
removing the first radio group menu item but it also makes possible to
properly implement the insertion of new items in the middle of an existing
radio group which couldn't be done with m_startRadioGroup approach at all.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74544 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

10 years agoFix harmless unused parameter warning in wxOSX.
Vadim Zeitlin [Tue, 16 Jul 2013 14:10:22 +0000 (14:10 +0000)] 
Fix harmless unused parameter warning in wxOSX.

We don't use the timestamp in wxNonOwnedWindow::HandleResized().

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74543 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775