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
6d0dd719
Commit
6d0dd719
authored
Aug 04, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Aug 06, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oledlg: Constify some variables.
parent
bd9f1fdd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
pastespl.c
dlls/oledlg/pastespl.c
+3
-3
No files found.
dlls/oledlg/pastespl.c
View file @
6d0dd719
...
...
@@ -83,7 +83,7 @@ static void dump_ps_flags(DWORD flags)
TRACE
(
"flags %08x %s
\n
"
,
flags
,
flagstr
);
}
static
void
dump_pastespecial
(
LPOLEUIPASTESPECIALW
ps
)
static
void
dump_pastespecial
(
const
OLEUIPASTESPECIALW
*
ps
)
{
UINT
i
;
dump_ps_flags
(
ps
->
dwFlags
);
...
...
@@ -363,7 +363,7 @@ static void init_lists(HWND hdlg, ps_struct_t *ps_struct)
EnableWindow
(
GetDlgItem
(
hdlg
,
IDOK
),
0
);
}
static
void
update_src_text
(
HWND
hdlg
,
ps_struct_t
*
ps_struct
)
static
void
update_src_text
(
HWND
hdlg
,
const
ps_struct_t
*
ps_struct
)
{
WCHAR
*
str
;
...
...
@@ -403,7 +403,7 @@ static void update_as_icon(HWND hdlg, ps_struct_t *ps_struct)
EnableWindow
(
change_icon
,
0
);
}
static
void
update_result_text
(
HWND
hdlg
,
ps_struct_t
*
ps_struct
)
static
void
update_result_text
(
HWND
hdlg
,
const
ps_struct_t
*
ps_struct
)
{
WCHAR
resource_txt
[
200
];
UINT
res_id
;
...
...
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