d59729f396
fixed it by looking for funny things that deviated from the sameples, and doing various recommended safe things, and found a few sql errors, and one by one the crashes went away. The new wxWidgets just seems less tolerant of little careless stuff that is not right.
23 lines
434 B
C
23 lines
434 B
C
#pragma once
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// headers
|
|
// ----------------------------------------------------------------------------
|
|
#include "wx/wxprec.h"
|
|
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/wx.h"
|
|
#endif //precompiled headers
|
|
|
|
#include "wx/log.h"
|
|
#include "wx/config.h"
|
|
|
|
#ifndef wxHAS_IMAGES_IN_RESOURCES
|
|
#include "../../src/rho.xpm"
|
|
#endif
|
|
|
|
#include "frame.h"
|
|
#include "app.h"
|
|
|