92 (new ConfigDialog {m_window})->exec(); |
92 (new ConfigDialog {m_window})->exec(); |
93 } |
93 } |
94 |
94 |
95 void FileToolset::setLDrawPath() |
95 void FileToolset::setLDrawPath() |
96 { |
96 { |
97 LDrawPathDialog* dialog = new LDrawPathDialog {m_config->lDrawPath(), true}; |
97 LDrawPathDialog* dialog = new LDrawPathDialog {configuration().lDrawPath(), true}; |
98 |
98 |
99 if (dialog->exec()) |
99 if (dialog->exec()) |
100 m_config->setLDrawPath (dialog->path()); |
100 configuration().setLDrawPath (dialog->path()); |
101 } |
101 } |
102 |
102 |
103 void FileToolset::exit() |
103 void FileToolset::exit() |
104 { |
104 { |
105 ::exit(EXIT_SUCCESS); |
105 ::exit(EXIT_SUCCESS); |