mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2025-12-06 05:32:02 +01:00
Don't rely to __WXDEBUG__, as once wx/debug is included, it's defined, despite setting wxDEBUG_LEVEL=0.
Fix non-debug build date (matching debug one).
This commit is contained in:
parent
5a489bff1e
commit
0de40d65cd
|
|
@ -23,10 +23,10 @@
|
||||||
|
|
||||||
const wxString VENDOR_NAME = wxT("G4KLX");
|
const wxString VENDOR_NAME = wxT("G4KLX");
|
||||||
|
|
||||||
#if defined(__WXDEBUG__)
|
#if defined(_DEBUG)
|
||||||
const wxString VERSION = wxT("20200621 - DEBUG");
|
const wxString VERSION = wxT("20200621 - DEBUG");
|
||||||
#else
|
#else
|
||||||
const wxString VERSION = wxT("20190621");
|
const wxString VERSION = wxT("20200621");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue