Fix compilation errors with g++4.7
This commit is contained in:
parent
b79d8d9e10
commit
1efabea9b4
|
@ -99,7 +99,7 @@ public:
|
|||
case MODE_MEASURE:
|
||||
case MODE_VERIFY:
|
||||
{
|
||||
std::map<unsigned int, T>::iterator itr = x.begin();
|
||||
typename std::map<unsigned int, T>::iterator itr = x.begin();
|
||||
while (number > 0)
|
||||
{
|
||||
Do(itr->first);
|
||||
|
|
|
@ -41,11 +41,11 @@ class TASInputDlg : public wxDialog
|
|||
void OnMouseUpR(wxMouseEvent& event);
|
||||
void ResetValues();
|
||||
void GetValues(SPADStatus *PadStatus, int controllerID);
|
||||
void TASInputDlg::SetTurbo(wxMouseEvent& event);
|
||||
void TASInputDlg::SetTurboFalse(wxMouseEvent& event);
|
||||
void TASInputDlg::ButtonTurbo();
|
||||
void TASInputDlg::GetKeyBoardInput(SPADStatus *PadStatus);
|
||||
bool TASInputDlg::TextBoxHasFocus();
|
||||
void SetTurbo(wxMouseEvent& event);
|
||||
void SetTurboFalse(wxMouseEvent& event);
|
||||
void ButtonTurbo();
|
||||
void GetKeyBoardInput(SPADStatus *PadStatus);
|
||||
bool TextBoxHasFocus();
|
||||
bool HasFocus();
|
||||
|
||||
wxBitmap CreateStickBitmap(int x, int y);
|
||||
|
|
Loading…
Reference in New Issue