Suppress bogus g++ warnings about uninitialized variables.
The variables are always initialized but for some reason (at least the Apple version of) g++ gives warnings for them. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64665 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
697dce56f1
commit
85a0778e6a
@ -3047,8 +3047,8 @@ void FormMain::OnCatColours( wxCommandEvent& event )
|
||||
|
||||
void FormMain::OnSelectStyle( wxCommandEvent& WXUNUSED(event) )
|
||||
{
|
||||
int style;
|
||||
int extraStyle;
|
||||
int style = 0;
|
||||
int extraStyle = 0;
|
||||
|
||||
{
|
||||
wxArrayString chs;
|
||||
|
Loading…
Reference in New Issue
Block a user