mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-09 04:30:43 +00:00
Path seperator fix in newprofile.cpp
This commit is contained in:
parent
396e9033ca
commit
b76b772b53
@ -99,9 +99,9 @@ void NewProfile::on_nextButton_clicked()
|
||||
switch(index) {
|
||||
case 0:
|
||||
settings.setValue("Settings/AppRoot", ui->dataFolderPath->text());
|
||||
p_pref->setFilename(ui->dataFolderPath->text()+"/"+p_pref->name()+xmlext);
|
||||
p_pref->setFilename(ui->dataFolderPath->text()+QDir::separator()+p_pref->name()+xmlext);
|
||||
p_pref->setPath(ui->dataFolderPath->text());
|
||||
p_layout->setFilename(ui->dataFolderPath->text()+"/"+p_layout->name()+xmlext);
|
||||
p_layout->setFilename(ui->dataFolderPath->text()+QDir::separator()+p_layout->name()+xmlext);
|
||||
p_layout->setPath(ui->dataFolderPath->text());
|
||||
// Reload Preferences object
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user