Skip to content

Commit

Permalink
[BUG#2024] fixed crypto version issues for ubuntu 20.04 compile with …
Browse files Browse the repository at this point in the history
…default libraries.
  • Loading branch information
ElonKou committed Oct 9, 2024
1 parent 5274fd6 commit 9f529f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/zenoedit/panel/zlogpanel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ void ZPlainLogPanel::contextMenuEvent(QContextMenuEvent* event)
QString cmd = text;
cmd = cmd.replace(str, newStr);
QProcess process;
auto cmdArgs = cmd.split(QRegularExpression("\\s+"), QString::SkipEmptyParts);
auto cmdArgs = process.splitCommand(cmd);
process.setProgram(cmdArgs.takeFirst());
QStringList args;
for (int i = 0; i < cmdArgs.size(); i++)
Expand Down

0 comments on commit 9f529f9

Please sign in to comment.