Changeset 85412 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jul 22, 2020 11:23:05 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/manager/UIVirtualBoxManager.cpp
r85399 r85412 1241 1241 AssertMsgReturnVoid(pAction, ("This slot should be called by action only!\n")); 1242 1242 const QString strPath = pAction->property("path").toString(); 1243 QStringList arguments = QStringList() << pAction->property("arguments").toString();1243 QStringList arguments = pAction->property("arguments").toString().split(' '); 1244 1244 1245 1245 /* Get current-item: */ … … 1258 1258 1259 1259 /* Execute console application finally: */ 1260 QProcess::startDetached( QString("%1 %2").arg(strPath, arguments.join(' ')));1260 QProcess::startDetached(strPath, arguments); 1261 1261 } 1262 1262
Note:
See TracChangeset
for help on using the changeset viewer.