From 1aedff09c89dd2442aefd58fd349da19966d0caa Mon Sep 17 00:00:00 2001 From: "Joachim Wuttke (l)" <j.wuttke@fz-juelich.de> Date: Fri, 5 Nov 2021 18:16:26 +0100 Subject: [PATCH] local fct to anon namespace --- GUI/Util/GUIHelpers.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/GUI/Util/GUIHelpers.cpp b/GUI/Util/GUIHelpers.cpp index 30fd5d7a12f..4ba66e94a19 100644 --- a/GUI/Util/GUIHelpers.cpp +++ b/GUI/Util/GUIHelpers.cpp @@ -26,7 +26,7 @@ #include <QValidator> #include <cmath> -namespace GUI::View::Helpers { +namespace { //! Single step for QDoubleSpinBox. double singleStep(int decimals) @@ -35,6 +35,10 @@ double singleStep(int decimals) return 1. / std::pow(10., decimals - 1); } +} // namespace + + +namespace GUI::View::Helpers { void information(QWidget* parent, const QString& title, const QString& text, const QString& detailedText) -- GitLab