From 8bde79329ef9054a85ced7615a5ff76f292e90ea Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Wed, 24 Dec 2003 11:24:29 +0000 Subject: [PATCH] Fixed RegisterClipboardFormatW. svn path=/trunk/; revision=7212 --- reactos/lib/user32/windows/clipboard.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/lib/user32/windows/clipboard.c b/reactos/lib/user32/windows/clipboard.c index d923381b831..2e5cde37df6 100644 --- a/reactos/lib/user32/windows/clipboard.c +++ b/reactos/lib/user32/windows/clipboard.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: clipboard.c,v 1.9 2003/12/14 17:59:15 navaraf Exp $ +/* $Id: clipboard.c,v 1.10 2003/12/24 11:24:29 navaraf Exp $ * * PROJECT: ReactOS user32.dll * FILE: lib/user32/windows/input.c @@ -206,7 +206,7 @@ RegisterClipboardFormatA(LPCSTR lpszFormat) UINT STDCALL RegisterClipboardFormatW(LPCWSTR lpszFormat) { - ULONG Ret = RegisterClipboardFormatW(lpszFormat); + ULONG Ret = RegisterWindowMessageW(lpszFormat); DbgPrint("RegisterClipboardFormatW(%S) - %x\n", lpszFormat, Ret); return Ret; }