Skip to content

Commit

Permalink
Replace '-' with "_" for LaunchBox docs
Browse files Browse the repository at this point in the history
LB does this itself so we need to account for this when naming related
files so that they all match.
  • Loading branch information
oblivioncth committed Jul 18, 2024
1 parent 61ed0b1 commit 7e0849a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions app/src/frontend/launchbox/lb-install.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,7 @@ QString Install::translateDocName(const QString& originalName, Fe::DataDoc::Type
// LB specific changes
translatedName.replace('#','_');
translatedName.replace('\'','_');
translatedName.replace('-','_');

return translatedName;
}
Expand Down

0 comments on commit 7e0849a

Please sign in to comment.