Commit 690142dc authored by Ove Kaaven's avatar Ove Kaaven Committed by Alexandre Julliard

Fix a few typos and such.

parent 3c1f362c
...@@ -1627,7 +1627,6 @@ LPINT lpMax /* [O] Where to store maximum value */) ...@@ -1627,7 +1627,6 @@ LPINT lpMax /* [O] Where to store maximum value */)
* SCROLL_ShowScrollBar() * SCROLL_ShowScrollBar()
* *
* Back-end for ShowScrollBar(). Returns FALSE if no action was taken. * Back-end for ShowScrollBar(). Returns FALSE if no action was taken.
* NOTE: fShowV/fShowH must be zero when nBar is SB_HORZ/SB_VERT.
*/ */
BOOL SCROLL_ShowScrollBar( HWND hwnd, INT nBar, BOOL SCROLL_ShowScrollBar( HWND hwnd, INT nBar,
BOOL fShowH, BOOL fShowV ) BOOL fShowH, BOOL fShowV )
......
...@@ -72,7 +72,7 @@ from the WINE distributed winedefault.reg. This can be done using ...@@ -72,7 +72,7 @@ from the WINE distributed winedefault.reg. This can be done using
./regapi once for one example user and then reusing his .wine/user.reg ./regapi once for one example user and then reusing his .wine/user.reg
and .wine/system.reg files. [FIXME: this needs to be done better] and .wine/system.reg files. [FIXME: this needs to be done better]
install -m 644 wine.sytemreg $BR/etc/wine/ install -m 644 wine.systemreg $BR/etc/wine/
install -m 644 wine.userreg $BR/etc/wine/ install -m 644 wine.userreg $BR/etc/wine/
There are now a lot of libraries generated by the build process, so a There are now a lot of libraries generated by the build process, so a
......
...@@ -8,7 +8,7 @@ The X11 driver ...@@ -8,7 +8,7 @@ The X11 driver
currently available is Patrik Stridvall's ncurses-based ttydrv, which currently available is Patrik Stridvall's ncurses-based ttydrv, which
he claims works for displaying calc.exe). The display driver is chosen he claims works for displaying calc.exe). The display driver is chosen
with the "GraphicsDriver" option in the [wine] section of with the "GraphicsDriver" option in the [wine] section of
wine.conf/.winerc, but I will only cover the x11drv in this article. wine.conf/.winerc, but I will only cover the x11drv in this document.
x11drv modes of operation x11drv modes of operation
......
...@@ -219,7 +219,7 @@ sub IsMounted { ...@@ -219,7 +219,7 @@ sub IsMounted {
} }
sub RegisterDrive { sub RegisterDrive {
my($DOSdrive, $Drive, $Type) = @_; my($DOSdrive, $Drive) = @_;
$::DOS2Unix{$DOSdrive} = $Drive; $::DOS2Unix{$DOSdrive} = $Drive;
$::Device2DOS{$Drive->[0]} = $DOSdrive; $::Device2DOS{$Drive->[0]} = $DOSdrive;
$::MntPoint2DOS{$Drive->[1]} = $DOSdrive; $::MntPoint2DOS{$Drive->[1]} = $DOSdrive;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment