From 00154ec38f744547fe496e8bb82f23c80130a0b7 Mon Sep 17 00:00:00 2001 From: "Joachim Wuttke (h)" <j.wuttke@fz-juelich.de> Date: Mon, 1 Nov 2021 16:34:49 +0100 Subject: [PATCH] ApplicationName:=BornAgain (governs config directory) --- GUI/Application/Application.cpp | 2 +- auto/Wrap/doxygenFit.i | 11 +++++++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/GUI/Application/Application.cpp b/GUI/Application/Application.cpp index f2c99148008..d99d18019fd 100644 --- a/GUI/Application/Application.cpp +++ b/GUI/Application/Application.cpp @@ -24,7 +24,7 @@ Application::Application(int& argc, char** argv) { setApplicationName("BornAgain"); setApplicationVersion(GUI::Helpers::getBornAgainVersionString()); - setOrganizationName("Forschungszentrum Jülich, Scientific Computing Group at MLZ Garching"); + setOrganizationName("BornAgain"); if (!GUI::Utils::OS::HostOsInfo::isMacHost()) QApplication::setWindowIcon(QIcon(":/images/BornAgain.ico")); diff --git a/auto/Wrap/doxygenFit.i b/auto/Wrap/doxygenFit.i index 630680290a5..ec44a379932 100644 --- a/auto/Wrap/doxygenFit.i +++ b/auto/Wrap/doxygenFit.i @@ -10097,7 +10097,7 @@ Clone a function. Each derived class must implement their version of the Clone m // File: classMultiOption.xml %feature("docstring") MultiOption " -Stores a single option for minimization algorithm. Int, double, string values are available. Relies on boost::variant, will be switched to std::variant in C++-17. +Stores a single option for minimization algorithm. Int, double, string values are available. C++ includes: MultiOption.h "; @@ -10133,9 +10133,16 @@ Returns the option's value. Returns the option's default value (i.e. used during construction) "; +%feature("docstring") MultiOption::value_str "std::string MultiOption::value_str() + +Returns a string representation of the option's value. + +Sets the value of option from string. +"; + %feature("docstring") MultiOption::setFromString "void MultiOption::setFromString(const std::string &value) -Sets the value of option from string. TODO find more elegant way (without if/else and boost::lexical_cast +Sets the value of option from string. "; -- GitLab