Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sebastian Mayr
wine
Commits
feeaf9c2
Commit
feeaf9c2
authored
18 years ago
by
Huw Davies
Committed by
Alexandre Julliard
18 years ago
Browse files
Options
Downloads
Patches
Plain Diff
oledlg: Update the source text.
parent
8711d5e6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/oledlg/pastespl.c
+26
-0
26 additions, 0 deletions
dlls/oledlg/pastespl.c
with
26 additions
and
0 deletions
dlls/oledlg/pastespl.c
+
26
−
0
View file @
feeaf9c2
...
...
@@ -364,6 +364,29 @@ 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
)
{
WCHAR
*
str
;
if
(
ps_struct
->
flags
&
PSF_SELECTPASTE
)
{
if
(
ps_struct
->
source_name
)
str
=
ps_struct
->
source_name
;
else
str
=
ps_struct
->
link_source_name
;
}
else
{
if
(
ps_struct
->
link_source_name
)
str
=
ps_struct
->
link_source_name
;
else
str
=
ps_struct
->
source_name
;
}
SetDlgItemTextW
(
hdlg
,
IDC_PS_SOURCETEXT
,
str
);
}
static
void
update_as_icon
(
HWND
hdlg
,
ps_struct_t
*
ps_struct
)
{
HWND
icon_display
=
GetDlgItem
(
hdlg
,
IDC_PS_ICONDISPLAY
);
...
...
@@ -449,6 +472,7 @@ static void mode_change(HWND hdlg, ps_struct_t *ps_struct, UINT id)
ps_struct
->
flags
|=
PSF_SELECTPASTELINK
;
}
update_src_text
(
hdlg
,
ps_struct
);
update_display_list
(
hdlg
,
id
==
IDC_PS_PASTE
?
IDC_PS_PASTELIST
:
IDC_PS_PASTELINKLIST
);
selection_change
(
hdlg
,
ps_struct
);
}
...
...
@@ -537,6 +561,8 @@ static INT_PTR CALLBACK ps_dlg_proc(HWND hdlg, UINT msg, WPARAM wp, LPARAM lp)
init_lists
(
hdlg
,
ps_struct
);
update_src_text
(
hdlg
,
ps_struct
);
selection_change
(
hdlg
,
ps_struct
);
SetFocus
(
GetDlgItem
(
hdlg
,
IDC_PS_DISPLAYLIST
));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment