[ACCESS] Reposition the "ToggleKeys" group box control (#1541)
[reactos.git] / dll / cpl / access / mouse.c
index 0fe19e5..a81d947 100644 (file)
@@ -1,16 +1,14 @@
-/* $Id: mouse.c 29112 2007-09-19 21:31:49Z ekohl $
- *
+/*
  * PROJECT:         ReactOS Accessibility Control Panel
  * LICENSE:         GPL - See COPYING in the top level directory
  * FILE:            dll/cpl/access/mouse.c
  * PURPOSE:         Mouse-related accessibility settings
- * COPYRIGHT:       Copyright 2004 Johannes Anderwald (j_anderw@sbox.tugraz.at)
+ * COPYRIGHT:       Copyright 2004 Johannes Anderwald (johannes.anderwald@reactos.org)
  *                  Copyright 2007 Eric Kohl
  */
 
 #include "access.h"
 
-
 #define SPEEDTICKS 9
 #define ACCELTICKS 9
 
@@ -52,7 +50,7 @@ MouseKeysDlgProc(HWND hwndDlg,
             /* Set the thumb */
             SendDlgItemMessage(hwndDlg, IDC_MOUSEKEYS_SPEED_TRACK, TBM_SETPOS, TRUE, i);
 
-            /* Set the number of ticks for the accelleration trackbar */
+            /* Set the number of ticks for the acceleration trackbar */
             SendDlgItemMessage(hwndDlg, IDC_MOUSEKEYS_ACCEL_TRACK, TBM_SETRANGE,
                                TRUE, MAKELONG(0, ACCELTICKS - 1));
 
@@ -179,7 +177,7 @@ MousePageProc(HWND hwndDlg,
                     if (DialogBoxParam(hApplet,
                                        MAKEINTRESOURCE(IDD_MOUSEKEYSOPTIONS),
                                        hwndDlg,
-                                       (DLGPROC)MouseKeysDlgProc,
+                                       MouseKeysDlgProc,
                                        (LPARAM)pGlobalData))
                         PropSheet_Changed(GetParent(hwndDlg), hwndDlg);
                     break;