refactor: makeQuotedArgs is now a static private member or CoreProcess

This commit is contained in:
sithlord48
2025-10-05 08:57:49 -04:00
committed by Chris Rizzitello
parent 8d0c368c8f
commit bb1e2ecc78
2 changed files with 2 additions and 1 deletions

View File

@ -77,7 +77,7 @@ QString processStateToString(CoreProcess::ProcessState state)
* Can also be used to create a representation of a command that can be pasted
* into a terminal.
*/
QString makeQuotedArgs(const QString &app, const QStringList &args)
QString CoreProcess::makeQuotedArgs(const QString &app, const QStringList &args)
{
QStringList command;
command << app;