1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00

Added windows include to notifier

This commit is contained in:
James Booth 2013-04-21 23:39:16 +01:00
parent f63f68630b
commit be41a376c5
2 changed files with 3 additions and 3 deletions

View File

@ -28,9 +28,6 @@
#include <X11/extensions/scrnsaver.h> #include <X11/extensions/scrnsaver.h>
#endif #endif
#include <glib.h> #include <glib.h>
#ifdef PLATFORM_CYGWIN
#include <windows.h>
#endif
#ifdef HAVE_NCURSESW_NCURSES_H #ifdef HAVE_NCURSESW_NCURSES_H
#include <ncursesw/ncurses.h> #include <ncursesw/ncurses.h>
#elif HAVE_NCURSES_H #elif HAVE_NCURSES_H

View File

@ -28,6 +28,9 @@
#ifdef HAVE_LIBNOTIFY #ifdef HAVE_LIBNOTIFY
#include <libnotify/notify.h> #include <libnotify/notify.h>
#endif #endif
#ifdef PLATFORM_CYGWIN
#include <windows.h>
#endif
#include "log.h" #include "log.h"
#include "ui/ui.h" #include "ui/ui.h"