Compilation problems on GCC 4.1.0
Brought to you by:
ed_welch
This problem appears when using GCC 4.1.0:
BaseNomad.h:20: error: extra qualification
'BaseNomad::' on member 'BaseNomad'
BaseNomad.h:20: error: extra qualification
'BaseNomad::' on member 'BaseNomad'
make[1]: *** [BaseNomad.o] Error 1
Basically it should just be to remove the BaseNomad::
part on line 20, I will try to create a patch...
Logged In: YES
user_id=473872
Actually I see it is only in BaseNomad.h and EzGrid.h
I think it's easy to fix without any patch...
Logged In: YES
user_id=473872
Oops there was one more problem in NomadSyncDlg.h
line 31:
- ActionList::iterator NomadSyncDlg::FindAction(int nRow);
+ ActionList::iterator FindAction(int nRow);
Posting patches anyway...