mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-19 00:15: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
|
@ -6,6 +6,10 @@
|
|||
* Copyright (C) 2020 Raspberry Pi Ltd
|
||||
*/
|
||||
|
||||
#ifdef _WIN32
|
||||
#include <winsock2.h>
|
||||
#endif
|
||||
|
||||
#include <QString>
|
||||
#include <QThread>
|
||||
#include <QFile>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue