Add Windows.h include to ShutdownEventListener

This commit is contained in:
Ryan Huffman 2014-09-03 08:04:39 -07:00
parent f3efbb35f4
commit 1ee23a1661
2 changed files with 4 additions and 1 deletions

View file

@ -13,7 +13,6 @@
#define hifi_AssignmentClient_h
#include <QtCore/QCoreApplication>
#include <QAbstractNativeEventFilter>
#include "ShutdownEventListener.h"
#include "ThreadedAssignment.h"

View file

@ -11,6 +11,10 @@
#include "ShutdownEventListener.h"
#ifdef Q_OS_WIN
#include <Windows.h>
#endif
ShutdownEventListener::ShutdownEventListener(QObject* parent) : QObject(parent) {
}