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
412cd04c
Commit
412cd04c
authored
Jul 22, 2008
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Jul 23, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wordpad: Remove unused parameter for preview_command().
parent
787361d3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
print.c
programs/wordpad/print.c
+1
-1
wordpad.c
programs/wordpad/wordpad.c
+1
-1
wordpad.h
programs/wordpad/wordpad.h
+1
-1
No files found.
programs/wordpad/print.c
View file @
412cd04c
...
...
@@ -814,7 +814,7 @@ void update_preview(HWND hWnd)
InvalidateRect
(
hWnd
,
&
rc
,
TRUE
);
}
LRESULT
preview_command
(
HWND
hWnd
,
WPARAM
wParam
,
LPARAM
lParam
)
LRESULT
preview_command
(
HWND
hWnd
,
WPARAM
wParam
)
{
switch
(
LOWORD
(
wParam
))
{
...
...
programs/wordpad/wordpad.c
View file @
412cd04c
...
...
@@ -2467,7 +2467,7 @@ static LRESULT CALLBACK WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lPara
case
WM_COMMAND
:
if
(
preview_isactive
())
{
return
preview_command
(
hWnd
,
wParam
,
lParam
);
return
preview_command
(
hWnd
,
wParam
);
}
return
OnCommand
(
hWnd
,
wParam
,
lParam
);
...
...
programs/wordpad/wordpad.h
View file @
412cd04c
...
...
@@ -204,7 +204,7 @@ void dialog_printsetup(HWND);
void
dialog_print
(
HWND
,
LPWSTR
);
void
target_device
(
HWND
,
DWORD
);
void
print_quick
(
LPWSTR
);
LRESULT
preview_command
(
HWND
,
WPARAM
,
LPARAM
);
LRESULT
preview_command
(
HWND
,
WPARAM
);
void
init_preview
(
HWND
,
LPWSTR
);
void
close_preview
(
HWND
);
BOOL
preview_isactive
(
void
);
...
...
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