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
c627c168
Commit
c627c168
authored
May 17, 2023
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 17, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineps: Fix names in paper sizes list.
This is likely a regression from
cd4f48f2
. Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
parent
9fd82b61
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
driver.c
dlls/wineps.drv/driver.c
+1
-2
No files found.
dlls/wineps.drv/driver.c
View file @
c627c168
...
...
@@ -255,8 +255,7 @@ static INT_PTR CALLBACK PSDRV_PaperDlgProc(HWND hwnd, UINT msg,
i
=
Cursel
=
0
;
LIST_FOR_EACH_ENTRY
(
ps
,
&
di
->
pi
->
ppd
->
PageSizes
,
PAGESIZE
,
entry
)
{
SendDlgItemMessageA
(
hwnd
,
IDD_PAPERS
,
LB_INSERTSTRING
,
i
,
(
LPARAM
)
ps
->
FullName
);
SendDlgItemMessageW
(
hwnd
,
IDD_PAPERS
,
LB_INSERTSTRING
,
i
,
(
LPARAM
)
ps
->
FullName
);
if
(
di
->
pi
->
Devmode
->
dmPublic
.
dmPaperSize
==
ps
->
WinPage
)
Cursel
=
i
;
i
++
;
...
...
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