Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/desktopfile/utils.d
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ private @trusted void execProcess(scope const(string)[] args, string workingDire
* $(D DesktopExecException) if unquotedArgs is empty.
* See_Also: $(D SpawnParams)
*/
@trusted void spawnApplication(const(string)[] unquotedArgs, const SpawnParams params)
@trusted void spawnApplication(scope const(string)[] unquotedArgs, const scope SpawnParams params)
{
if (!unquotedArgs.length) {
throw new DesktopExecException("No arguments. Missing or empty Exec value");
Expand Down