Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
1f26b146
Commit
1f26b146
authored
Dec 31, 2007
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Dec 31, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
janitorial: Remove superfluous backslashes at end of lines.
parent
fcdca0e8
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
datetime.c
dlls/comctl32/datetime.c
+1
-1
graphics.c
dlls/gdiplus/graphics.c
+1
-1
install.c
dlls/msi/tests/install.c
+1
-1
msi.c
dlls/msi/tests/msi.c
+1
-1
varformat.c
dlls/oleaut32/tests/varformat.c
+1
-1
misc.c
dlls/quartz/tests/misc.c
+1
-1
No files found.
dlls/comctl32/datetime.c
View file @
1f26b146
...
...
@@ -1072,7 +1072,7 @@ DATETIME_SetFocus (DATETIME_INFO *infoPtr, HWND lostFocus)
TRACE
(
"got focus from %p
\n
"
,
lostFocus
);
/* if monthcal is open and it loses focus, close monthcal */
if
(
infoPtr
->
hMonthCal
&&
(
lostFocus
==
infoPtr
->
hMonthCal
)
&&
\
if
(
infoPtr
->
hMonthCal
&&
(
lostFocus
==
infoPtr
->
hMonthCal
)
&&
IsWindowVisible
(
infoPtr
->
hMonthCal
))
{
ShowWindow
(
infoPtr
->
hMonthCal
,
SW_HIDE
);
...
...
dlls/gdiplus/graphics.c
View file @
1f26b146
...
...
@@ -500,7 +500,7 @@ static GpStatus draw_polyline(GpGraphics *graphics, GpPen *pen,
draw_cap
(
graphics
,
pen
->
brush
->
lb
.
lbColor
,
pen
->
endcap
,
pen
->
width
,
pen
->
customend
,
pt
[
count
-
2
].
X
,
pt
[
count
-
2
].
Y
,
pt
[
count
-
1
].
X
,
pt
[
count
-
1
].
Y
);
draw_cap
(
graphics
,
pen
->
brush
->
lb
.
lbColor
,
pen
->
startcap
,
pen
->
width
,
pen
->
customstart
,
pt
[
1
].
X
,
pt
[
1
].
Y
,
pt
[
0
].
X
,
pt
[
0
].
Y
);
\
pt
[
1
].
X
,
pt
[
1
].
Y
,
pt
[
0
].
X
,
pt
[
0
].
Y
);
}
transform_and_round_points
(
graphics
,
pti
,
ptcopy
,
count
);
...
...
dlls/msi/tests/install.c
View file @
1f26b146
...
...
@@ -2447,7 +2447,7 @@ static void test_publish(void)
state
=
MsiQueryProductState
(
"{7DF88A48-996F-4EC8-A022-BF956F9B2CBB}"
);
ok
(
state
==
INSTALLSTATE_UNKNOWN
,
"Expected INSTALLSTATE_UNKNOWN, got %d
\n
"
,
state
);
state
=
MsiQueryFeatureState
(
"{7DF88A48-996F-4EC8-A022-BF956F9B2CBB}"
,
"feature"
);
\
state
=
MsiQueryFeatureState
(
"{7DF88A48-996F-4EC8-A022-BF956F9B2CBB}"
,
"feature"
);
ok
(
state
==
INSTALLSTATE_UNKNOWN
,
"Expected INSTALLSTATE_UNKNOWN, got %d
\n
"
,
state
);
state
=
MsiQueryFeatureState
(
"{7DF88A48-996F-4EC8-A022-BF956F9B2CBB}"
,
"montecristo"
);
...
...
dlls/msi/tests/msi.c
View file @
1f26b146
...
...
@@ -736,7 +736,7 @@ static void test_MsiQueryComponentState(void)
/* empty szProductCode */
state
=
MAGIC_ERROR
;
r
=
pMsiQueryComponentStateA
(
""
,
NULL
,
MSIINSTALLCONTEXT_MACHINE
,
component
,
&
state
);
\
r
=
pMsiQueryComponentStateA
(
""
,
NULL
,
MSIINSTALLCONTEXT_MACHINE
,
component
,
&
state
);
ok
(
r
==
ERROR_INVALID_PARAMETER
,
"Expected ERROR_INVALID_PARAMETER, got %d
\n
"
,
r
);
ok
(
state
==
MAGIC_ERROR
,
"Expected 0xdeadbeef, got %d
\n
"
,
state
);
...
...
dlls/oleaut32/tests/varformat.c
View file @
1f26b146
...
...
@@ -393,7 +393,7 @@ static void test_VarFormat(void)
VARFMT
(
VT_BOOL
,
V_BOOL
,
VARIANT_TRUE
,
""
,
E_INVALIDARG
,
""
);
}
static
const
char
*
szVarWdnFail
=
\
static
const
char
*
szVarWdnFail
=
"VarWeekdayName (%d, %d, %d, %d, %x): returned %8x, expected %8x
\n
"
;
#define VARWDN(iWeekday, fAbbrev, iFirstDay, dwFlags, ret, buff, out, freeOut) \
do { \
...
...
dlls/quartz/tests/misc.c
View file @
1f26b146
...
...
@@ -97,7 +97,7 @@ static void test_aggregation(const CLSID clsidOuter, const CLSID clsidInner,
QI_SUCCEED
(
pUnkInner
,
iidInner
,
pUnkAggregatee
);
QI_SUCCEED
(
pUnkInner
,
IID_IUnknown
,
pUnkInnerTest
);
if
(
!
pUnkAggregator
||
!
pUnkOuterTest
||
!
pUnkAggregatee
\
if
(
!
pUnkAggregator
||
!
pUnkOuterTest
||
!
pUnkAggregatee
||
!
pUnkInnerTest
)
{
skip
(
"One of the required interfaces is NULL
\n
"
);
...
...
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