Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
e739ba95
Commit
e739ba95
authored
May 12, 2006
by
Francois Gouget
Committed by
Alexandre Julliard
May 15, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assorted spelling fixes.
parent
8266fdd8
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
10 additions
and
10 deletions
+10
-10
configure
configure
+1
-1
configure.ac
configure.ac
+1
-1
install.c
dlls/advpack/tests/install.c
+1
-1
action.c
dlls/msi/action.c
+1
-1
wsprintf.c
dlls/user/tests/wsprintf.c
+3
-3
surface.c
dlls/wined3d/surface.c
+1
-1
dib.c
dlls/x11drv/dib.c
+2
-2
No files found.
configure
View file @
e739ba95
...
...
@@ -21815,7 +21815,7 @@ fi
if
test
"
$wine_cv_msg_fonts
"
=
"yes"
then
echo
echo
"*** Warning: Free
type or Fontf
orge is missing."
echo
"*** Warning: Free
Type or FontF
orge is missing."
echo
"*** Fonts will not be built. Dialog text may be invisible or unaligned."
exitcode
=
1
fi
...
...
configure.ac
View file @
e739ba95
...
...
@@ -1833,7 +1833,7 @@ fi
if test "$wine_cv_msg_fonts" = "yes"
then
echo
echo "*** Warning: Free
type or Fontf
orge is missing."
echo "*** Warning: Free
Type or FontF
orge is missing."
echo "*** Fonts will not be built. Dialog text may be invisible or unaligned."
exitcode=1
fi
...
...
dlls/advpack/tests/install.c
View file @
e739ba95
...
...
@@ -61,7 +61,7 @@ static void test_RunSetupCommand()
hr
=
pRunSetupCommand
(
NULL
,
"winver.exe"
,
"Install"
,
NULL
,
"Title"
,
NULL
,
0
,
NULL
);
ok
(
hr
==
E_INVALIDARG
,
"Expected E_INVALIDARG, got %ld
\n
"
,
hr
);
/* try to run a non
-
existent exe */
/* try to run a nonexistent exe */
hexe
=
(
HANDLE
)
0xdeadbeef
;
hr
=
pRunSetupCommand
(
NULL
,
"idontexist.exe"
,
"Install"
,
"c:
\\
windows
\\
system32"
,
"Title"
,
&
hexe
,
0
,
NULL
);
ok
(
hr
==
HRESULT_FROM_WIN32
(
ERROR_FILE_NOT_FOUND
),
...
...
dlls/msi/action.c
View file @
e739ba95
...
...
@@ -1459,7 +1459,7 @@ static MSIFOLDER *load_folder( MSIPACKAGE *package, LPCWSTR dir )
tgt_short
=
p
;
src_short
=
folder_split_path
(
p
,
':'
);
/* split the long and short path
e
s */
/* split the long and short paths */
tgt_long
=
folder_split_path
(
tgt_short
,
'|'
);
src_long
=
folder_split_path
(
src_short
,
'|'
);
...
...
dlls/user/tests/wsprintf.c
View file @
e739ba95
...
...
@@ -51,7 +51,7 @@ static void wsprintfWTest(void)
}
/* Test if the CharUpper / CharLower functions return true 16 bit results,
if the input is a 16 bit input value. Upto Wine 11-2003 the input value
if the input is a 16 bit input value. Up
to Wine 11-2003 the input value
0xff returns 0xffffffff. */
static
void
CharUpperTest
(
void
)
...
...
@@ -69,7 +69,7 @@ static void CharUpperTest(void)
break
;
}
}
ok
(
!
failed
,
"CharUpper failed - 16bit input (0x%0x) returned 32bit result (0x%0x)"
,
i
,
out
);
ok
(
!
failed
,
"CharUpper failed - 16bit input (0x%0x) returned 32bit result (0x%0x)
\n
"
,
i
,
out
);
}
static
void
CharLowerTest
(
void
)
...
...
@@ -87,7 +87,7 @@ static void CharLowerTest(void)
break
;
}
}
ok
(
!
failed
,
"CharLower failed - 16bit input (0x%0x) returned 32bit result (0x%0x)"
,
i
,
out
);
ok
(
!
failed
,
"CharLower failed - 16bit input (0x%0x) returned 32bit result (0x%0x)
\n
"
,
i
,
out
);
}
...
...
dlls/wined3d/surface.c
View file @
e739ba95
...
...
@@ -1905,7 +1905,7 @@ HRESULT WINAPI IWineD3DSurfaceImpl_SetColorKey(IWineD3DSurface *iface, DWORD Fla
}
if
(
dirtify
)
{
TRACE
(
"Color key changed, dirtifing surface
\n
"
);
TRACE
(
"Color key changed, dirtif
y
ing surface
\n
"
);
This
->
Flags
|=
SFLAG_DIRTY
;
}
...
...
dlls/x11drv/dib.c
View file @
e739ba95
...
...
@@ -1609,8 +1609,8 @@ static void X11DRV_DIB_GetImageBits_8( int lines, BYTE *dstbits,
* Hack for now
* This condition is true when GetImageBits has been called by
* UpdateDIBSection. For now, GetNearestIndex is too slow to support
* 256 colormaps, so we'll just use
for
for GetDIBits calls.
* (In some
s cases, in a
updateDIBSection, the returned colors are bad too)
* 256 colormaps, so we'll just use
it
for GetDIBits calls.
* (In some
cases, in an
updateDIBSection, the returned colors are bad too)
*/
if
(
!
srccolors
)
goto
updatesection
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment