Add missing #ifdef around slot

This commit is contained in:
Janek Bevendorff 2017-01-18 00:33:47 +01:00
parent 198691182b
commit b5cf6c7161
No known key found for this signature in database
GPG Key ID: CFEC2F6850BFFA53

View File

@ -37,9 +37,11 @@ Q_SIGNALS:
void openFile(const QString& filename);
private Q_SLOTS:
#if defined(Q_OS_UNIX)
void quitBySignal();
#endif
private:
private:
QWidget* m_mainWindow;
#if defined(Q_OS_UNIX)