X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Fmain.cpp;h=249c5a716f86c46c261164803054b547289e024c;hb=a217e7366f768d671fa325ebe8546d57ce9524e6;hp=ed4e656e50b0696f30683de42f24963d6a9e6944;hpb=45729fca56479bd9158486e0cda0c4a94b4dd1dc;p=xestiaab%2F.git diff --git a/source/main.cpp b/source/main.cpp index ed4e656..249c5a7 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -26,19 +26,18 @@ IMPLEMENT_APP(XestiaABApp); bool XestiaABApp::OnInit() { - // Check that on Win32 systems that. + // Setup the locale. -#if defined(__WIN32__) + wxLocale locale; + locale.Init(wxLANGUAGE_DEFAULT, wxLOCALE_LOAD_DEFAULT); -#include +#if defined(__WIN32__) - XCCVer XCCRequiredVer; - XCCRequiredVer.MajorVer = 1; - XCCRequiredVer.MinorVer = 0; + // Check that the minimum version of Xestia Common Components is installed on the system. - XCCVer XCCRetrievedVer = GetXCCLibraryVersion(); +#include - if (XCCRetrievedVer < XCCRequiredVer){ + if (!CheckXCCVersion(1, 0, 0)){ MessageBox(0, L"The version of Xestia Common Components installed is an older version not supported by this version of Xestia Address Book.\n\nPlease visit http://xestia.co.uk/commoncomponents and follow the page instructions to download the version required.", L"Older version of Xestia Common Components installed", MB_OK|MB_ICONSTOP); this->Exit(); }