From 12c333836633b87ab830cbe56864c8ce53913749 Mon Sep 17 00:00:00 2001 From: Rene Gassmoeller Date: Tue, 11 Apr 2017 16:33:14 -0600 Subject: [PATCH] Use default method for storing settings --- mainwindow.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 190b833..0d70868 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -29,11 +29,8 @@ namespace dealii { MainWindow::MainWindow(const QString &filename) { - // a file for user settings - QString settings_file = QDir::currentPath() + "/settings.ini"; - // load settings - gui_settings = new QSettings (settings_file, QSettings::IniFormat); + gui_settings = new QSettings ("deal.II", "parameterGUI"); // tree for showing XML tags tree_widget = new QTreeWidget; -- 2.39.5