mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-18 16:05:21 +01:00
Windows: fix depreceation warnings
- winsock2.h should be included before windows.h - QProcess::execute('name') -> QProcess::execute('name', args);
This commit is contained in:
parent
64d271b092
commit
e490ec1c4d
4 changed files with 7 additions and 3 deletions
|
@ -153,7 +153,7 @@ bool DownloadThread::_openAndPrepareDevice()
|
|||
qDebug() << "Removing partition table from Windows drive #" << _nr << "(" << _filename << ")";
|
||||
|
||||
QProcess proc;
|
||||
proc.start("diskpart");
|
||||
proc.start("diskpart", QStringList());
|
||||
proc.waitForStarted();
|
||||
proc.write("select disk "+_nr+"\r\n"
|
||||
"clean\r\n"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue