Add missing header for _exit()

Fixes #4188
This commit is contained in:
John Maguire 2014-02-07 13:40:32 +01:00
parent 81933c5069
commit acfc7e6d21
1 changed files with 5 additions and 1 deletions

View File

@ -23,7 +23,11 @@
# define _WIN32_WINNT 0x0600
# include <windows.h>
# include <iostream>
#endif // Q_OS_WIN32
#endif // Q_OS_WIN32
#ifdef Q_OS_UNIX
# include <unistd.h>
#endif // Q_OS_UNIX
#include <QDir>
#include <QFont>