From 2ad397e18e754aeb61b547507a35a039ca9bf2ab Mon Sep 17 00:00:00 2001 From: wmayer Date: Sun, 16 Jun 2024 07:12:14 +0200 Subject: [PATCH] Core: Remove superfluous + operator --- src/Gui/MainWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/MainWindow.cpp b/src/Gui/MainWindow.cpp index 9d7d991fe1..31a63c394d 100644 --- a/src/Gui/MainWindow.cpp +++ b/src/Gui/MainWindow.cpp @@ -2563,7 +2563,7 @@ void MainWindow::setWindowTitle(const QString& string) } // allow to disable version number - ParameterGrp::handle hGen = +App::GetApplication().GetParameterGroupByPath( + ParameterGrp::handle hGen = App::GetApplication().GetParameterGroupByPath( "User parameter:BaseApp/Preferences/General"); bool showVersion = hGen->GetBool("ShowVersionInTitle", true);