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
65e1f75f
Commit
65e1f75f
authored
Feb 13, 1999
by
Marcus Meissner
Committed by
Alexandre Julliard
Feb 13, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some warnings fixed, one useless VERSION warning removed (winelib).
parent
743885a9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
6 deletions
+7
-6
draglist.c
dlls/comctl32/draglist.c
+1
-1
tooltips.c
dlls/comctl32/tooltips.c
+1
-1
version.c
misc/version.c
+4
-3
winpos.c
windows/winpos.c
+1
-1
No files found.
dlls/comctl32/draglist.c
View file @
65e1f75f
...
...
@@ -37,7 +37,7 @@ VOID WINAPI DrawInsert (HWND32 hwndParent, HWND32 hwndLB, INT32 nItem)
INT32
WINAPI
LBItemFromPt
(
HWND32
hwndLB
,
POINT32
pt
,
BOOL32
bAutoScroll
)
{
FIXME
(
commctrl
,
"(0x%x %
dx %
d %s)
\n
"
,
FIXME
(
commctrl
,
"(0x%x %
ld x %l
d %s)
\n
"
,
hwndLB
,
pt
.
x
,
pt
.
y
,
bAutoScroll
?
"TRUE"
:
"FALSE"
);
...
...
dlls/comctl32/tooltips.c
View file @
65e1f75f
...
...
@@ -1421,7 +1421,7 @@ TOOLTIPS_RelayEvent (WND *wndPtr, WPARAM32 wParam, LPARAM lParam)
infoPtr
->
nTool
=
TOOLTIPS_GetToolFromPoint
(
infoPtr
,
lpMsg
->
hwnd
,
&
pt
);
TRACE
(
tooltips
,
"tool (%x) %d %d
\n
"
,
wndPtr
->
hwndSelf
,
infoPtr
->
nOldTool
,
infoPtr
->
nTool
);
TRACE
(
tooltips
,
"WM_MOUSEMOVE (%04x %
d %
d)
\n
"
,
TRACE
(
tooltips
,
"WM_MOUSEMOVE (%04x %
ld %l
d)
\n
"
,
wndPtr
->
hwndSelf
,
pt
.
x
,
pt
.
y
);
if
((
infoPtr
->
bActive
)
&&
(
infoPtr
->
nTool
!=
infoPtr
->
nOldTool
))
{
if
(
infoPtr
->
nOldTool
==
-
1
)
{
...
...
misc/version.c
View file @
65e1f75f
...
...
@@ -151,9 +151,10 @@ WINDOWS_VERSION VERSION_GetVersion(void)
if
(
peheader
->
OptionalHeader
.
MinorSubsystemVersion
==
50
)
return
NT351
;
if
(
peheader
->
OptionalHeader
.
MinorSubsystemVersion
==
51
)
return
NT351
;
}
ERR
(
ver
,
"unknown subsystem version: %04x.%04x, please report.
\n
"
,
peheader
->
OptionalHeader
.
MajorSubsystemVersion
,
peheader
->
OptionalHeader
.
MinorSubsystemVersion
);
if
(
peheader
->
OptionalHeader
.
MajorSubsystemVersion
)
ERR
(
ver
,
"unknown subsystem version: %04x.%04x, please report.
\n
"
,
peheader
->
OptionalHeader
.
MajorSubsystemVersion
,
peheader
->
OptionalHeader
.
MinorSubsystemVersion
);
return
defaultWinVersion
;
}
...
...
windows/winpos.c
View file @
65e1f75f
...
...
@@ -1034,7 +1034,7 @@ void WINPOS_GetMinMaxInfo( WND *wndPtr, POINT32 *maxSize, POINT32 *maxPos,
/* Some sanity checks */
TRACE
(
win
,
"%
d %d / %d %d / %d %d / %d %
d
\n
"
,
TRACE
(
win
,
"%
ld %ld / %ld %ld / %ld %ld / %ld %l
d
\n
"
,
MinMax
.
ptMaxSize
.
x
,
MinMax
.
ptMaxSize
.
y
,
MinMax
.
ptMaxPosition
.
x
,
MinMax
.
ptMaxPosition
.
y
,
MinMax
.
ptMaxTrackSize
.
x
,
MinMax
.
ptMaxTrackSize
.
y
,
...
...
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