diff --git a/src/plugins/miscellaneous/Core/src/corecliutils.cpp b/src/plugins/miscellaneous/Core/src/corecliutils.cpp index 8d0bd17bdb..3c4b864922 100644 --- a/src/plugins/miscellaneous/Core/src/corecliutils.cpp +++ b/src/plugins/miscellaneous/Core/src/corecliutils.cpp @@ -654,7 +654,7 @@ void cleanPresentationMathml(QDomElement *pDomElement) // Merge successive child mrow elements, as long as their parent is not an // element that requires a specific number of arguments (which could become // wrong if we were to merge two successive mrow elements) - // Note: see http://www.w3.org/TR/MathML2/chapter3.html#id.3.1.3.2 for the + // Note: see https://w3.org/TR/MathML2/chapter3.html#id.3.1.3.2 for the // list of the elements to check... static const QString Mfrac = "mfrac"; diff --git a/src/plugins/miscellaneous/Core/src/propertyeditorwidget.cpp b/src/plugins/miscellaneous/Core/src/propertyeditorwidget.cpp index 9bff6f2d3b..60e39fecb4 100644 --- a/src/plugins/miscellaneous/Core/src/propertyeditorwidget.cpp +++ b/src/plugins/miscellaneous/Core/src/propertyeditorwidget.cpp @@ -915,7 +915,7 @@ void Property::setDoubleValue(double pDoubleValue, bool pEmitSignal) { // Set our value, should it be of double type // Note: we want as much precision as possible, hence we use a precision of - // 15 decimals (see http://en.wikipedia.org/wiki/Double_precision)... + // 15 decimals (see https://en.wikipedia.org/wiki/Double_precision)... if (mType == Type::Double) { setValue(QString::number(pDoubleValue, 'g', 15), false, pEmitSignal); diff --git a/src/plugins/solver/CVODESolver/src/cvodesolverplugin.cpp b/src/plugins/solver/CVODESolver/src/cvodesolverplugin.cpp index 5193fa8300..16dd0b7624 100644 --- a/src/plugins/solver/CVODESolver/src/cvodesolverplugin.cpp +++ b/src/plugins/solver/CVODESolver/src/cvodesolverplugin.cpp @@ -35,8 +35,8 @@ PLUGININFO_FUNC CVODESolverPluginInfo() { Descriptions descriptions; - descriptions.insert("en", QString::fromUtf8(R"(a plugin that uses CVODE to solve ODEs.)")); - descriptions.insert("fr", QString::fromUtf8(R"(une extension qui utilise CVODE pour résoudre des EDOs.)")); + descriptions.insert("en", QString::fromUtf8(R"(a plugin that uses CVODE to solve ODEs.)")); + descriptions.insert("fr", QString::fromUtf8(R"(une extension qui utilise CVODE pour résoudre des EDOs.)")); return new PluginInfo(PluginInfo::Category::Solver, true, false, QStringList() << "SUNDIALS", diff --git a/src/plugins/solver/ForwardEulerSolver/src/forwardeulersolverplugin.cpp b/src/plugins/solver/ForwardEulerSolver/src/forwardeulersolverplugin.cpp index 56abed6014..1917eaaf03 100644 --- a/src/plugins/solver/ForwardEulerSolver/src/forwardeulersolverplugin.cpp +++ b/src/plugins/solver/ForwardEulerSolver/src/forwardeulersolverplugin.cpp @@ -35,8 +35,8 @@ PLUGININFO_FUNC ForwardEulerSolverPluginInfo() { Descriptions descriptions; - descriptions.insert("en", QString::fromUtf8(R"(a plugin that implements the Forward Euler method to solve ODEs.)")); - descriptions.insert("fr", QString::fromUtf8(R"(une extension qui implémente la méthode Forward Euler pour résoudre des EDOs.)")); + descriptions.insert("en", QString::fromUtf8(R"(a plugin that implements the Forward Euler method to solve ODEs.)")); + descriptions.insert("fr", QString::fromUtf8(R"(une extension qui implémente la méthode Forward Euler pour résoudre des EDOs.)")); return new PluginInfo(PluginInfo::Category::Solver, true, false, QStringList(), diff --git a/src/plugins/solver/FourthOrderRungeKuttaSolver/src/fourthorderrungekuttasolverplugin.cpp b/src/plugins/solver/FourthOrderRungeKuttaSolver/src/fourthorderrungekuttasolverplugin.cpp index 7bca98d015..07eaf1a05c 100644 --- a/src/plugins/solver/FourthOrderRungeKuttaSolver/src/fourthorderrungekuttasolverplugin.cpp +++ b/src/plugins/solver/FourthOrderRungeKuttaSolver/src/fourthorderrungekuttasolverplugin.cpp @@ -35,8 +35,8 @@ PLUGININFO_FUNC FourthOrderRungeKuttaSolverPluginInfo() { Descriptions descriptions; - descriptions.insert("en", QString::fromUtf8(R"(a plugin that implements the fourth-order Runge-Kutta method to solve ODEs.)")); - descriptions.insert("fr", QString::fromUtf8(R"(une extension qui implémente la méthode Runge-Kutta du quatrième ordre pour résoudre des EDOs.)")); + descriptions.insert("en", QString::fromUtf8(R"(a plugin that implements the fourth-order Runge-Kutta method to solve ODEs.)")); + descriptions.insert("fr", QString::fromUtf8(R"(une extension qui implémente la méthode Runge-Kutta du quatrième ordre pour résoudre des EDOs.)")); return new PluginInfo(PluginInfo::Category::Solver, true, false, QStringList(), diff --git a/src/plugins/solver/HeunSolver/src/heunsolverplugin.cpp b/src/plugins/solver/HeunSolver/src/heunsolverplugin.cpp index 8009f00675..6136ef1dfb 100644 --- a/src/plugins/solver/HeunSolver/src/heunsolverplugin.cpp +++ b/src/plugins/solver/HeunSolver/src/heunsolverplugin.cpp @@ -35,8 +35,8 @@ PLUGININFO_FUNC HeunSolverPluginInfo() { Descriptions descriptions; - descriptions.insert("en", QString::fromUtf8(R"(a plugin that implements the Heun's method to solve ODEs.)")); - descriptions.insert("fr", QString::fromUtf8(R"(une extension qui implémente la méthode de Heun pour résoudre des EDOs.)")); + descriptions.insert("en", QString::fromUtf8(R"(a plugin that implements the Heun's method to solve ODEs.)")); + descriptions.insert("fr", QString::fromUtf8(R"(une extension qui implémente la méthode de Heun pour résoudre des EDOs.)")); return new PluginInfo(PluginInfo::Category::Solver, true, false, QStringList(), diff --git a/src/plugins/solver/KINSOLSolver/src/kinsolsolverplugin.cpp b/src/plugins/solver/KINSOLSolver/src/kinsolsolverplugin.cpp index 2590c8f836..968220df58 100644 --- a/src/plugins/solver/KINSOLSolver/src/kinsolsolverplugin.cpp +++ b/src/plugins/solver/KINSOLSolver/src/kinsolsolverplugin.cpp @@ -35,8 +35,8 @@ PLUGININFO_FUNC KINSOLSolverPluginInfo() { Descriptions descriptions; - descriptions.insert("en", QString::fromUtf8(R"(a plugin that uses KINSOL to solve non-linear algebraic systems.)")); - descriptions.insert("fr", QString::fromUtf8(R"(une extension qui utilise KINSOL pour résoudre des systèmes algébriques non-linéaires.)")); + descriptions.insert("en", QString::fromUtf8(R"(a plugin that uses KINSOL to solve non-linear algebraic systems.)")); + descriptions.insert("fr", QString::fromUtf8(R"(une extension qui utilise KINSOL pour résoudre des systèmes algébriques non-linéaires.)")); return new PluginInfo(PluginInfo::Category::Solver, true, false, QStringList() << "SUNDIALS", diff --git a/src/plugins/solver/SecondOrderRungeKuttaSolver/src/secondorderrungekuttasolverplugin.cpp b/src/plugins/solver/SecondOrderRungeKuttaSolver/src/secondorderrungekuttasolverplugin.cpp index 678ccc4b78..15e1ec054a 100644 --- a/src/plugins/solver/SecondOrderRungeKuttaSolver/src/secondorderrungekuttasolverplugin.cpp +++ b/src/plugins/solver/SecondOrderRungeKuttaSolver/src/secondorderrungekuttasolverplugin.cpp @@ -35,8 +35,8 @@ PLUGININFO_FUNC SecondOrderRungeKuttaSolverPluginInfo() { Descriptions descriptions; - descriptions.insert("en", QString::fromUtf8(R"(a plugin that implements the second-order Runge-Kutta method to solve ODEs.)")); - descriptions.insert("fr", QString::fromUtf8(R"(une extension qui implémente la méthode Runge-Kutta du deuxième ordre pour résoudre des EDOs.)")); + descriptions.insert("en", QString::fromUtf8(R"(a plugin that implements the second-order Runge-Kutta method to solve ODEs.)")); + descriptions.insert("fr", QString::fromUtf8(R"(une extension qui implémente la méthode Runge-Kutta du deuxième ordre pour résoudre des EDOs.)")); return new PluginInfo(PluginInfo::Category::Solver, true, false, QStringList(), diff --git a/src/plugins/widget/GraphPanelWidget/src/graphpanelplotwidget.cpp b/src/plugins/widget/GraphPanelWidget/src/graphpanelplotwidget.cpp index 7be12d1fc8..6ebaa6b5c9 100644 --- a/src/plugins/widget/GraphPanelWidget/src/graphpanelplotwidget.cpp +++ b/src/plugins/widget/GraphPanelWidget/src/graphpanelplotwidget.cpp @@ -1319,7 +1319,7 @@ void GraphPanelPlotLegendWidget::renderLegend(QPainter *pPainter, // Note: this is based on QwtLegend::renderLegend() and it fixes a problem // with the layout when it has its expanding directions set to // horizontal. More information on this issue can be found at - // http://www.qtcentre.org/threads/68983-Problem-with-QwtDynGridLayout-layoutItems()... + // https://qtcentre.org/threads/68983-Problem-with-QwtDynGridLayout-layoutItems()... if (!mActive) { return; diff --git a/src/plugins/widget/QScintillaWidget/src/qscintillawidgetplugin.cpp b/src/plugins/widget/QScintillaWidget/src/qscintillawidgetplugin.cpp index 7ee79ef620..e88acbc6fb 100644 --- a/src/plugins/widget/QScintillaWidget/src/qscintillawidgetplugin.cpp +++ b/src/plugins/widget/QScintillaWidget/src/qscintillawidgetplugin.cpp @@ -34,8 +34,8 @@ PLUGININFO_FUNC QScintillaWidgetPluginInfo() { Descriptions descriptions; - descriptions.insert("en", QString::fromUtf8(R"(a plugin to support QScintilla.)")); - descriptions.insert("fr", QString::fromUtf8(R"(une extension pour supporter QScintilla.)")); + descriptions.insert("en", QString::fromUtf8(R"(a plugin to support QScintilla.)")); + descriptions.insert("fr", QString::fromUtf8(R"(une extension pour supporter QScintilla.)")); return new PluginInfo(PluginInfo::Category::Widget, false, false, QStringList() << "Core" << "QScintilla",