Fix windows compilation

This commit is contained in:
codestation
2014-10-07 16:58:52 -04:30
parent 8d271a4def
commit 4f7d3ce280
3 changed files with 6 additions and 6 deletions

View File

@@ -38,10 +38,6 @@ public:
void hide();
void showMessage(const QString &title, const QString &message);
#ifndef Q_OS_LINUX
void showMessage(const QString &title, const QString &message);
#endif
private:
//system tray
QAction *quit;

View File

@@ -22,10 +22,14 @@
#include <QtCore/qglobal.h>
#ifdef Q_OS_LINUX
#if defined(QCMA_TRAYINDICATOR_LIBRARY)
# define TRAYINDICATORSHARED_EXPORT Q_DECL_EXPORT
#else
# define TRAYINDICATORSHARED_EXPORT Q_DECL_IMPORT
#endif
#else
# define TRAYINDICATORSHARED_EXPORT
#endif
#endif // TRAYINDICATOR_GLOBAL_H