+ always get occ version information in About dialog

This commit is contained in:
wmayer
2016-03-19 15:55:09 +01:00
parent f88eeed6eb
commit 8728bb2172
4 changed files with 32 additions and 10 deletions

View File

@@ -106,13 +106,6 @@ PyObject* Part::PartExceptionOCCDimensionError;
PyMODINIT_FUNC initPart()
{
std::stringstream str;
str << OCC_VERSION_MAJOR << "." << OCC_VERSION_MINOR << "." << OCC_VERSION_MAINTENANCE;
#ifdef OCC_VERSION_DEVELOPMENT
str << "." OCC_VERSION_DEVELOPMENT;
#endif
App::Application::Config()["OCC_VERSION"] = str.str();
Base::Console().Log("Module: Part\n");
// This is highly experimental and we should keep an eye on it