diff options
author | James Booth <boothj5@gmail.com> | 2016-03-10 22:21:56 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2016-03-10 22:21:56 +0000 |
commit | 185405b9d1499c249a9d1d4a1b5207bce34aadb4 (patch) | |
tree | c7c11e34c9a5014bc6b4db706e2af36b6c3d8bd5 /src/ui | |
parent | 1ddfa47313579d8fb67b70bb8702e75573479d31 (diff) | |
download | profani-tty-185405b9d1499c249a9d1d4a1b5207bce34aadb4.tar.gz |
Fixed PLATFORM_CYGWIN references
Diffstat (limited to 'src/ui')
-rw-r--r-- | src/ui/notifier.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/notifier.c b/src/ui/notifier.c index fabf14c9..ddcac0aa 100644 --- a/src/ui/notifier.c +++ b/src/ui/notifier.c @@ -41,7 +41,7 @@ #ifdef PROF_HAVE_LIBNOTIFY #include <libnotify/notify.h> #endif -#ifdef PLATFORM_CYGWIN +#ifdef PROF_PLATFORM_CYGWIN #include <windows.h> #endif @@ -227,7 +227,7 @@ notify(const char *const message, int timeout, const char *const category) log_error("Libnotify not initialised."); } #endif -#ifdef PLATFORM_CYGWIN +#ifdef PROF_PLATFORM_CYGWIN NOTIFYICONDATA nid; nid.cbSize = sizeof(NOTIFYICONDATA); //nid.hWnd = hWnd; |