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:
@@ -741,7 +741,7 @@ void MyCanvas::OnPaint( wxPaintEvent &WXUNUSED(event) )
|
||||
fontInfo.Printf(wxT("Font size is %d points, family: %s, encoding: %s"),
|
||||
m_font.GetPointSize(),
|
||||
m_font.GetFamilyString().c_str(),
|
||||
wxFontMapper::Get()->
|
||||
wxFontMapper::
|
||||
GetEncodingDescription(m_font.GetEncoding()).c_str());
|
||||
|
||||
dc.DrawText(fontInfo, x, y);
|
||||
|
@@ -246,8 +246,8 @@ GridFrame::GridFrame()
|
||||
wxTE_MULTILINE );
|
||||
|
||||
logger = new wxLogTextCtrl( logWin );
|
||||
m_logOld = logger->SetActiveTarget( logger );
|
||||
logger->SetTimestamp( NULL );
|
||||
m_logOld = wxLog::SetActiveTarget( logger );
|
||||
wxLog::SetTimestamp( NULL );
|
||||
#endif // wxUSE_LOG
|
||||
|
||||
// this will create a grid and, by default, an associated grid
|
||||
|
@@ -189,7 +189,7 @@ void MyApp::DoStreamDemo(wxCommandEvent& WXUNUSED(event))
|
||||
|
||||
char std_buf[200];
|
||||
std_file_input >> std_buf;
|
||||
str.FromAscii(std_buf);
|
||||
str = wxString::FromAscii(std_buf);
|
||||
tmp.Printf( _T("String: %s\n"), str.c_str() );
|
||||
textCtrl.WriteText( tmp );
|
||||
|
||||
|
Reference in New Issue
Block a user