diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2015-11-01 11:44:55 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-11-01 11:44:55 +0100 |
commit | e82679127004934f44d86aba3854811223abe477 (patch) | |
tree | 5e34a9b6d5d7cf8549401ecfc50ddc725435db93 /qxt-mini | |
parent | 8dca727968bf64c8aa89cce09172f101c2ade069 (diff) |
qxt: guard against _WIN32
Diffstat (limited to 'qxt-mini')
-rw-r--r-- | qxt-mini/QxtGlobalShortcut | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/qxt-mini/QxtGlobalShortcut b/qxt-mini/QxtGlobalShortcut index d673035b..c2827bc2 100644 --- a/qxt-mini/QxtGlobalShortcut +++ b/qxt-mini/QxtGlobalShortcut @@ -1,2 +1,4 @@ -#include "qxtglobalshortcut.h" +#ifndef _WIN32 +# include "qxtglobalshortcut.h" +#endif |