Hello,
I have done the described way. Sorry I didn't work. There is the same problem as before.
I got always the error:
amuled-Preferences.o `test -f 'Preferences.cpp' || echo './'`Preferences.cpp; \
then mv -f ".deps/amuled-Preferences.Tpo" ".deps/amuled-Preferences.Po"; else rm -f ".deps/amuled-Preferences.Tpo"; exit 1; fi
Preferences.cpp: In constructor `CPreferences::CPreferences()':
Preferences.cpp:573: error: `wxGetLocalTimeMillis' undeclared (first use this function)
Preferences.cpp:573: error: (Each undeclared identifier is reported only once for each function it appears in.)
make[4]: *** [amuled-Preferences.o] Error 1

If I looked in the file Preferences.cpp
I found following statements:
----------------------
/// new implementation
CPreferences::CPreferences()
{
srand( wxGetLocalTimeMillis().GetLo() ); // we need random numbers sometimes
CreateUserHash();
// load preferences.dat or set standart values
wxString fullpath(theApp.ConfigDir + wxT("preferences.dat"));
CFile preffile;
if ( wxFileExists( fullpath ) ) {
if ( preffile.Open(fullpath, CFile::read) ) {
Preferences_Ext_Struct prefsExt;
---------------------------
Any idea?
Thanks for help