From dc71bde6047f870f8cebb9e3cf5d998f63335574 Mon Sep 17 00:00:00 2001 From: Thomas Bluemel Date: Fri, 17 Oct 2003 20:50:59 +0000 Subject: [PATCH] fixed wrong parameters svn path=/trunk/; revision=6350 --- reactos/lib/user32/windows/caret.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/lib/user32/windows/caret.c b/reactos/lib/user32/windows/caret.c index c65db2fa00e..5601b216c08 100644 --- a/reactos/lib/user32/windows/caret.c +++ b/reactos/lib/user32/windows/caret.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: caret.c,v 1.3 2003/10/17 20:31:56 weiden Exp $ +/* $Id: caret.c,v 1.4 2003/10/17 20:50:59 weiden Exp $ * * PROJECT: ReactOS user32.dll * FILE: lib/user32/windows/caret.c @@ -131,7 +131,7 @@ WINBOOL STDCALL SetCaretPos(int X, int Y) { - return (WINBOOL)NtUserCallTwoParam(TWOPARAM_ROUTINE_SETCARETPOS, (DWORD)X, (DWORD)Y); + return (WINBOOL)NtUserCallTwoParam((DWORD)X, (DWORD)Y, TWOPARAM_ROUTINE_SETCARETPOS); }