Include <stdbool.h> in clipboard.h as opposed to clipboardOSX.m; fixing a potential compiler error.
git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@5872 4a71c877-e1ca-e34f-864e-861f7616d084master
parent
55be99a19d
commit
c699aca070
|
@ -21,6 +21,8 @@
|
|||
#ifndef CLIPBOARD_H_
|
||||
#define CLIPBOARD_H_
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
/**
|
||||
* Returns a copy of the text in the systems clipboard. Should the clipboard be
|
||||
* empty, or populated with non-textual data NULL is returned.
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
|
|
Loading…
Reference in New Issue