[RESOLVED in r4178]
Hello
I found some errors in compiling r4174 on a Lenny with DolphinWX/Src/LogWindow.cpp
Source/Core/DolphinWX/Src/LogWindow.cpp:280: warning: 'virtual bool wxSizer::Remove(wxWindow*)' is deprecated (declared at /usr/include/wx-2.8/wx/sizer.h:513)
line 280 :
sRight->Remove(m_Log);
see to replace by :
sRight->Detach(m_Log);
source : wxSizer Class Reference
Source/Core/DolphinWX/Src/LogWindow.cpp:75: error: 'class wxRadioBox' has no member named 'SetButtonFont'
line 75 :
m_verbosity->SetButtonFont(wxFont(7, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL));
see to replace by :
m_verbosity->SetFont(wxFont(7, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL));
source : wxWindows 2 Change Log
Hello
I found some errors in compiling r4174 on a Lenny with DolphinWX/Src/LogWindow.cpp
Source/Core/DolphinWX/Src/LogWindow.cpp:280: warning: 'virtual bool wxSizer::Remove(wxWindow*)' is deprecated (declared at /usr/include/wx-2.8/wx/sizer.h:513)
line 280 :
sRight->Remove(m_Log);
see to replace by :
sRight->Detach(m_Log);
source : wxSizer Class Reference
Source/Core/DolphinWX/Src/LogWindow.cpp:75: error: 'class wxRadioBox' has no member named 'SetButtonFont'
line 75 :
m_verbosity->SetButtonFont(wxFont(7, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL));
see to replace by :
m_verbosity->SetFont(wxFont(7, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL));
source : wxWindows 2 Change Log