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
23739a33
Commit
23739a33
authored
Jul 16, 2002
by
Guy L. Albertelli
Committed by
Alexandre Julliard
Jul 16, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't issue error message if message number in application range.
parent
9797a38b
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
19 additions
and
28 deletions
+19
-28
animate.c
dlls/comctl32/animate.c
+1
-2
comboex.c
dlls/comctl32/comboex.c
+1
-2
datetime.c
dlls/comctl32/datetime.c
+1
-1
flatsb.c
dlls/comctl32/flatsb.c
+1
-2
hotkey.c
dlls/comctl32/hotkey.c
+1
-2
ipaddress.c
dlls/comctl32/ipaddress.c
+1
-1
monthcal.c
dlls/comctl32/monthcal.c
+1
-1
progress.c
dlls/comctl32/progress.c
+1
-2
rebar.c
dlls/comctl32/rebar.c
+1
-2
status.c
dlls/comctl32/status.c
+1
-2
tab.c
dlls/comctl32/tab.c
+5
-5
toolbar.c
dlls/comctl32/toolbar.c
+1
-1
tooltips.c
dlls/comctl32/tooltips.c
+1
-2
trackbar.c
dlls/comctl32/trackbar.c
+1
-2
treeview.c
dlls/comctl32/treeview.c
+1
-1
No files found.
dlls/comctl32/animate.c
View file @
23739a33
...
...
@@ -917,7 +917,7 @@ static LRESULT WINAPI ANIMATE_WindowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LP
return
DefWindowProcA
(
hWnd
,
uMsg
,
wParam
,
lParam
);
default:
if
(
uMsg
>=
WM_USER
)
if
(
(
uMsg
>=
WM_USER
)
&&
(
uMsg
<
WM_APP
)
)
ERR
(
"unknown msg %04x wp=%08x lp=%08lx
\n
"
,
uMsg
,
wParam
,
lParam
);
return
DefWindowProcA
(
hWnd
,
uMsg
,
wParam
,
lParam
);
...
...
@@ -946,4 +946,3 @@ void ANIMATE_Unregister(void)
{
UnregisterClassA
(
ANIMATE_CLASSA
,
(
HINSTANCE
)
NULL
);
}
dlls/comctl32/comboex.c
View file @
23739a33
...
...
@@ -2174,7 +2174,7 @@ COMBOEX_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
return
COMBOEX_WindowPosChanging
(
infoPtr
,
(
WINDOWPOS
*
)
lParam
);
default:
if
(
uMsg
>=
WM_USER
)
if
(
(
uMsg
>=
WM_USER
)
&&
(
uMsg
<
WM_APP
)
)
ERR
(
"unknown msg %04x wp=%08x lp=%08lx
\n
"
,
uMsg
,
wParam
,
lParam
);
return
DefWindowProcW
(
hwnd
,
uMsg
,
wParam
,
lParam
);
}
...
...
@@ -2203,4 +2203,3 @@ void COMBOEX_Unregister (void)
{
UnregisterClassW
(
WC_COMBOBOXEXW
,
(
HINSTANCE
)
NULL
);
}
dlls/comctl32/datetime.c
View file @
23739a33
...
...
@@ -1284,7 +1284,7 @@ DATETIME_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
return
DATETIME_Destroy
(
hwnd
,
wParam
,
lParam
);
default:
if
(
uMsg
>=
WM_USER
)
if
(
(
uMsg
>=
WM_USER
)
&&
(
uMsg
<
WM_APP
)
)
ERR
(
"unknown msg %04x wp=%08x lp=%08lx
\n
"
,
uMsg
,
wParam
,
lParam
);
return
DefWindowProcA
(
hwnd
,
uMsg
,
wParam
,
lParam
);
...
...
dlls/comctl32/flatsb.c
View file @
23739a33
...
...
@@ -221,7 +221,7 @@ FlatSB_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
return
FlatSB_Destroy
(
hwnd
,
wParam
,
lParam
);
default:
if
(
uMsg
>=
WM_USER
)
if
(
(
uMsg
>=
WM_USER
)
&&
(
uMsg
<
WM_APP
)
)
ERR
(
"unknown msg %04x wp=%08x lp=%08lx
\n
"
,
uMsg
,
wParam
,
lParam
);
return
DefWindowProcA
(
hwnd
,
uMsg
,
wParam
,
lParam
);
...
...
@@ -253,4 +253,3 @@ FLATSB_Unregister (void)
{
UnregisterClassA
(
FLATSB_CLASSA
,
(
HINSTANCE
)
NULL
);
}
dlls/comctl32/hotkey.c
View file @
23739a33
...
...
@@ -343,7 +343,7 @@ HOTKEY_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
/* case WM_SYSCHAR: */
default:
if
(
uMsg
>=
WM_USER
)
if
(
(
uMsg
>=
WM_USER
)
&&
(
uMsg
<
WM_APP
)
)
ERR
(
"unknown msg %04x wp=%08x lp=%08lx
\n
"
,
uMsg
,
wParam
,
lParam
);
return
DefWindowProcA
(
hwnd
,
uMsg
,
wParam
,
lParam
);
...
...
@@ -375,4 +375,3 @@ HOTKEY_Unregister (void)
{
UnregisterClassA
(
HOTKEY_CLASSA
,
(
HINSTANCE
)
NULL
);
}
dlls/comctl32/ipaddress.c
View file @
23739a33
...
...
@@ -533,7 +533,7 @@ IPADDRESS_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
return
IPADDRESS_IsBlank
(
infoPtr
);
default:
if
(
uMsg
>=
WM_USER
)
if
(
(
uMsg
>=
WM_USER
)
&&
(
uMsg
<
WM_APP
)
)
ERR
(
"unknown msg %04x wp=%08x lp=%08lx
\n
"
,
uMsg
,
wParam
,
lParam
);
return
DefWindowProcW
(
hwnd
,
uMsg
,
wParam
,
lParam
);
}
...
...
dlls/comctl32/monthcal.c
View file @
23739a33
...
...
@@ -2033,7 +2033,7 @@ MONTHCAL_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
return
MONTHCAL_Destroy
(
hwnd
,
wParam
,
lParam
);
default:
if
(
uMsg
>=
WM_USER
)
if
((
uMsg
>=
WM_USER
)
&&
(
uMsg
<
WM_APP
)
)
ERR
(
"unknown msg %04x wp=%08x lp=%08lx
\n
"
,
uMsg
,
wParam
,
lParam
);
return
DefWindowProcA
(
hwnd
,
uMsg
,
wParam
,
lParam
);
}
...
...
dlls/comctl32/progress.c
View file @
23739a33
...
...
@@ -360,7 +360,7 @@ static LRESULT WINAPI ProgressWindowProc(HWND hwnd, UINT message,
return
0
;
default:
if
(
message
>=
WM_USER
)
if
(
(
message
>=
WM_USER
)
&&
(
message
<
WM_APP
)
)
ERR
(
"unknown msg %04x wp=%04x lp=%08lx
\n
"
,
message
,
wParam
,
lParam
);
return
DefWindowProcW
(
hwnd
,
message
,
wParam
,
lParam
);
}
...
...
@@ -397,4 +397,3 @@ VOID PROGRESS_Unregister (void)
{
UnregisterClassW
(
PROGRESS_CLASSW
,
(
HINSTANCE
)
NULL
);
}
dlls/comctl32/rebar.c
View file @
23739a33
...
...
@@ -4472,7 +4472,7 @@ REBAR_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
return
REBAR_WindowPosChanged
(
infoPtr
,
wParam
,
lParam
);
default
:
if
(
uMsg
>=
WM_USER
)
if
(
(
uMsg
>=
WM_USER
)
&&
(
uMsg
<
WM_APP
)
)
ERR
(
"unknown msg %04x wp=%08x lp=%08lx
\n
"
,
uMsg
,
wParam
,
lParam
);
return
DefWindowProcA
(
hwnd
,
uMsg
,
wParam
,
lParam
);
...
...
@@ -4511,4 +4511,3 @@ REBAR_Unregister (void)
{
UnregisterClassA
(
REBARCLASSNAMEA
,
(
HINSTANCE
)
NULL
);
}
dlls/comctl32/status.c
View file @
23739a33
...
...
@@ -1223,7 +1223,7 @@ StatusWindowProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
return
DefWindowProcW
(
hwnd
,
msg
,
wParam
,
lParam
);
default:
if
(
msg
>=
WM_USER
)
if
(
(
msg
>=
WM_USER
)
&&
(
msg
<
WM_APP
)
)
ERR
(
"unknown msg %04x wp=%04x lp=%08lx
\n
"
,
msg
,
wParam
,
lParam
);
return
DefWindowProcW
(
hwnd
,
msg
,
wParam
,
lParam
);
...
...
@@ -1267,4 +1267,3 @@ STATUS_Unregister (void)
{
UnregisterClassW
(
STATUSCLASSNAMEW
,
(
HINSTANCE
)
NULL
);
}
dlls/comctl32/tab.c
View file @
23739a33
...
...
@@ -1262,7 +1262,7 @@ static void TAB_SetItemBounds (HWND hwnd)
/* ************ FIXME FIXME FIXME *************** */
/* */
/* FIXME: */
/* if vertical, */
/* if vertical, */
/* if item n and n+1 are in the same row, */
/* then the display has n+1 lower (toward the */
/* bottom) than n. We do it just the */
...
...
@@ -1284,7 +1284,7 @@ static void TAB_SetItemBounds (HWND hwnd)
curItemLeftPos
=
0
;
iCount
=
0
;
}
}
}
/* shift the item to the right to place it as the next item in this row */
infoPtr
->
items
[
iItm
].
rect
.
left
+=
curItemLeftPos
;
...
...
@@ -1587,14 +1587,14 @@ TAB_DrawItemInterior
else
if
(
lStyle
&
TCS_VERTICAL
)
{
rcImage
.
top
=
drawRect
->
bottom
-
cy
-
center_offset
;
rcImage
.
left
--
;
rcImage
.
left
--
;
drawRect
->
bottom
=
rcImage
.
top
-
HORIZONTAL_ITEM_PADDING
;
}
else
/* normal style, whether TCS_BOTTOM or not */
{
rcImage
.
left
=
drawRect
->
left
+
center_offset
+
3
;
drawRect
->
left
=
rcImage
.
left
+
cx
+
HORIZONTAL_ITEM_PADDING
;
rcImage
.
top
-=
(
lStyle
&
TCS_BOTTOM
)
?
2
:
1
;
rcImage
.
top
-=
(
lStyle
&
TCS_BOTTOM
)
?
2
:
1
;
}
TRACE
(
"drawing image=%d, left=%d, top=%d
\n
"
,
...
...
@@ -3175,7 +3175,7 @@ TAB_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
return
TAB_NCHitTest
(
hwnd
,
lParam
);
default:
if
(
uMsg
>=
WM_USER
)
if
(
(
uMsg
>=
WM_USER
)
&&
(
uMsg
<
WM_APP
)
)
WARN
(
"unknown msg %04x wp=%08x lp=%08lx
\n
"
,
uMsg
,
wParam
,
lParam
);
return
DefWindowProcA
(
hwnd
,
uMsg
,
wParam
,
lParam
);
...
...
dlls/comctl32/toolbar.c
View file @
23739a33
...
...
@@ -5842,7 +5842,7 @@ ToolbarWindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
return
DefWindowProcA
(
hwnd
,
uMsg
,
wParam
,
lParam
);
default
:
if
(
uMsg
>=
WM_USER
)
if
(
(
uMsg
>=
WM_USER
)
&&
(
uMsg
<
WM_APP
)
)
ERR
(
"unknown msg %04x wp=%08x lp=%08lx
\n
"
,
uMsg
,
wParam
,
lParam
);
return
DefWindowProcA
(
hwnd
,
uMsg
,
wParam
,
lParam
);
...
...
dlls/comctl32/tooltips.c
View file @
23739a33
...
...
@@ -2506,7 +2506,7 @@ TOOLTIPS_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
return
TOOLTIPS_WinIniChange
(
hwnd
,
wParam
,
lParam
);
default:
if
(
uMsg
>=
WM_USER
)
if
(
(
uMsg
>=
WM_USER
)
&&
(
uMsg
<
WM_APP
)
)
ERR
(
"unknown msg %04x wp=%08x lp=%08lx
\n
"
,
uMsg
,
wParam
,
lParam
);
return
DefWindowProcA
(
hwnd
,
uMsg
,
wParam
,
lParam
);
...
...
@@ -2538,4 +2538,3 @@ TOOLTIPS_Unregister (void)
{
UnregisterClassA
(
TOOLTIPS_CLASSA
,
(
HINSTANCE
)
NULL
);
}
dlls/comctl32/trackbar.c
View file @
23739a33
...
...
@@ -1767,7 +1767,7 @@ TRACKBAR_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
return
TRACKBAR_InitializeThumb
(
hwnd
);
default:
if
(
uMsg
>=
WM_USER
)
if
(
(
uMsg
>=
WM_USER
)
&&
(
uMsg
<
WM_APP
)
)
ERR
(
"unknown msg %04x wp=%08x lp=%08lx
\n
"
,
uMsg
,
wParam
,
lParam
);
return
DefWindowProcA
(
hwnd
,
uMsg
,
wParam
,
lParam
);
...
...
@@ -1799,4 +1799,3 @@ TRACKBAR_Unregister (void)
{
UnregisterClassA
(
TRACKBAR_CLASSA
,
(
HINSTANCE
)
NULL
);
}
dlls/comctl32/treeview.c
View file @
23739a33
...
...
@@ -5374,7 +5374,7 @@ TREEVIEW_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
default:
/* This mostly catches MFC and Delphi messages. :( */
if
(
uMsg
>=
WM_USER
)
if
(
(
uMsg
>=
WM_USER
)
&&
(
uMsg
<
WM_APP
)
)
TRACE
(
"Unknown msg %04x wp=%08x lp=%08lx
\n
"
,
uMsg
,
wParam
,
lParam
);
def:
return
DefWindowProcA
(
hwnd
,
uMsg
,
wParam
,
lParam
);
...
...
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