summaryrefslogtreecommitdiff
path: root/version
diff options
context:
space:
mode:
Diffstat (limited to 'version')
-rw-r--r--version/version.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/version/version.h b/version/version.h
index 7f320af2..e1117ea0 100644
--- a/version/version.h
+++ b/version/version.h
@@ -1,6 +1,9 @@
-#include <wx/string.h>
+#ifndef VERSION_HEADER_434343489702544325
+#define VERSION_HEADER_434343489702544325
namespace zen
{
- const wxString currentVersion = wxT("4.2"); //internal linkage!
+const wchar_t currentVersion[] = L"4.2"; //internal linkage!
}
+
+#endif
bgstack15