zmeszaros:
Hi,
I've found a small bug in:
\MQL4\Include\Controls\CheckBox.mqh (MT4 Version 4.00 Build 765)
Missing one const keyword in declarations of CCheckBox class.
Original (current) version:
bool Checked(void) { return(m_button.Pressed()); }
Fixed:
bool Checked(void) const { return(m_button.Pressed()); }
Regards,
Zoltan
Hi Zoltan
Please report any bugs to the Service Desk - they don't often hang around the forum ;) Thanks mate
Filter:
Okey, thanks!
Hi Zoltan
Please report any bugs to the Service Desk - they don't often hang around the forum ;) Thanks mate

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hi,
I've found a small bug in:
\MQL4\Include\Controls\CheckBox.mqh (MT4 Version 4.00 Build 765)
Missing one const keyword in declarations of CCheckBox class.
Original (current) version:
bool Checked(void) { return(m_button.Pressed()); }
Fixed:
bool Checked(void) const { return(m_button.Pressed()); }
Regards,
Zoltan