mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
Fix bug 2080
svn path=/trunk/; revision=26048
This commit is contained in:
parent
2ce91bd022
commit
a039eb5807
2 changed files with 4 additions and 4 deletions
|
@ -3,7 +3,7 @@
|
|||
|
||||
#include "window.h"
|
||||
|
||||
VOID FASTCALL IntIncrementSecuenceNumber(VOID);
|
||||
VOID FASTCALL IntIncrementSequenceNumber(VOID);
|
||||
|
||||
typedef struct _ClipboardChainElement
|
||||
{
|
||||
|
|
|
@ -200,7 +200,7 @@ intAddFormatedData(UINT format, HANDLE hData, DWORD size)
|
|||
|
||||
ClipboardData = ce;
|
||||
|
||||
IntIncrementSecuenceNumber();
|
||||
IntIncrementSequenceNumber();
|
||||
}
|
||||
|
||||
return ce;
|
||||
|
@ -567,7 +567,7 @@ NtUserEmptyClipboard(VOID)
|
|||
ClipboardOwnerWindow = ClipboardWindow;
|
||||
ClipboardOwnerThread = ClipboardThread;
|
||||
|
||||
IntIncrementSecuenceNumber();
|
||||
IntIncrementSequenceNumber();
|
||||
|
||||
ret = TRUE;
|
||||
}
|
||||
|
@ -1160,7 +1160,7 @@ NtUserEnumClipboardFormats(UINT uFormat)
|
|||
// If clipboard rendering is delayed,
|
||||
// the sequence number is not incremented until the changes are rendered.
|
||||
VOID FASTCALL
|
||||
IntIncrementSecuenceNumber(VOID)
|
||||
IntIncrementSequenceNumber(VOID)
|
||||
{
|
||||
|
||||
USE_WINSTA
|
||||
|
|
Loading…
Reference in a new issue