Applied patch [ 1171542 ] access static class members via scoping operator
Paul Cornett: A static class member can be accessed as X::member, there is no need for an object or pointer (s.member or p->member). There are also a few bugs with incorrect usage of wxString::Format and wxString::FromAscii. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33188 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -104,7 +104,7 @@ wxDatePickerCtrl::Create(wxWindow *parent,
|
||||
static bool s_initDone = false; // MT-ok: used from GUI thread only
|
||||
if ( !s_initDone )
|
||||
{
|
||||
if ( wxTheApp->GetComCtl32Version() < 470 )
|
||||
if ( wxApp::GetComCtl32Version() < 470 )
|
||||
{
|
||||
wxLogError(_("This system doesn't support date picker control, please upgrade your version of comctl32.dll"));
|
||||
|
||||
@@ -153,7 +153,7 @@ WXDWORD wxDatePickerCtrl::MSWGetStyle(long style, WXDWORD *exstyle) const
|
||||
|
||||
// although MSDN doesn't mention it, DTS_UPDOWN doesn't work with
|
||||
// comctl32.dll 4.72
|
||||
if ( wxTheApp->GetComCtl32Version() > 472 && (style & wxDP_SPIN) )
|
||||
if ( wxApp::GetComCtl32Version() > 472 && (style & wxDP_SPIN) )
|
||||
styleMSW |= DTS_UPDOWN;
|
||||
//else: drop down by default
|
||||
|
||||
|
||||
Reference in New Issue
Block a user