forked from cheng/wallet
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.
30 lines
1.0 KiB
Plaintext
30 lines
1.0 KiB
Plaintext
// This is wxWidgets style resource file. ;;
|
|
// The visual studio resource editor will screw it up.
|
|
#pragma code_page(65001) // UTF-8
|
|
// this icon is used with wxFrame::SetIcon()
|
|
AAArho ICON "../docs/rho.ico"
|
|
|
|
// and alphabetically (!), so put this icon first and give it a name
|
|
// starting with "a"
|
|
aaaaaaaa ICON "../docs/rho.ico"
|
|
|
|
// this icon is used with wxFrame::SetIcon()
|
|
sample ICON "../docs/rho.ico"
|
|
|
|
// set this to 1 if you don't want to use manifest resource provided by wxWidgets.
|
|
// An application manifest is needed for the application UI to look properly and other
|
|
// things - see docs/msw/winxp.md for more information)
|
|
#define wxUSE_NO_MANIFEST 0
|
|
|
|
// to enable full High DPI suppport, we need to opt in into Per-Monitor (V2) DPI awareness,
|
|
// see section Issues/MSW in programming guide High DPI Support in wxWidgets
|
|
#ifndef wxUSE_DPI_AWARE_MANIFEST
|
|
#define wxUSE_DPI_AWARE_MANIFEST 2
|
|
#endif
|
|
|
|
// this file contains the standard icons, cursors etc. and also includes the application
|
|
// manifest mentioned above
|
|
#include "../wxWidgets/include/wx/msw/wx.rc"
|
|
|
|
|