Fix clang compile error.

This commit is contained in:
John Maguire 2012-04-04 12:27:42 +02:00
parent b271dc4d0c
commit 4bfaad1099
1 changed files with 6 additions and 1 deletions

View File

@ -21,9 +21,14 @@
#include <QDialog>
class MacMonitorWrapper;
class NSEvent;
class Ui_GlobalShortcutGrabber;
#ifdef __OBJC__
@class NSEvent;
#else
class NSEvent;
#endif
class GlobalShortcutGrabber : public QDialog {
Q_OBJECT