hw/xwin: In clipboard function prototypes, use Window type, not int type
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> Reviewed-by: Colin Harrison <colin.harrison@virgin.net>
This commit is contained in:
parent
4a38c3bda2
commit
492c924c85
|
@ -97,7 +97,7 @@ typedef struct
|
||||||
|
|
||||||
int
|
int
|
||||||
winClipboardFlushXEvents(HWND hwnd,
|
winClipboardFlushXEvents(HWND hwnd,
|
||||||
int iWindow, Display * pDisplay, Bool fUnicodeSupport, ClipboardAtoms *atom);
|
Window iWindow, Display * pDisplay, Bool fUnicodeSupport, ClipboardAtoms *atom);
|
||||||
|
|
||||||
|
|
||||||
Atom
|
Atom
|
||||||
|
|
|
@ -54,7 +54,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static int
|
static int
|
||||||
winProcessXEventsTimeout(HWND hwnd, int iWindow, Display * pDisplay,
|
winProcessXEventsTimeout(HWND hwnd, Window iWindow, Display * pDisplay,
|
||||||
Bool fUseUnicode, ClipboardAtoms *atoms, int iTimeoutSec)
|
Bool fUseUnicode, ClipboardAtoms *atoms, int iTimeoutSec)
|
||||||
{
|
{
|
||||||
int iConnNumber;
|
int iConnNumber;
|
||||||
|
|
|
@ -129,7 +129,7 @@ winClipboardInitMonitoredSelections(void)
|
||||||
|
|
||||||
int
|
int
|
||||||
winClipboardFlushXEvents(HWND hwnd,
|
winClipboardFlushXEvents(HWND hwnd,
|
||||||
int iWindow, Display * pDisplay, Bool fUseUnicode, ClipboardAtoms *atoms)
|
Window iWindow, Display * pDisplay, Bool fUseUnicode, ClipboardAtoms *atoms)
|
||||||
{
|
{
|
||||||
Atom atomClipboard = atoms->atomClipboard;
|
Atom atomClipboard = atoms->atomClipboard;
|
||||||
Atom atomLocalProperty = atoms->atomLocalProperty;
|
Atom atomLocalProperty = atoms->atomLocalProperty;
|
||||||
|
|
Loading…
Reference in New Issue