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
9bf3355a
Commit
9bf3355a
authored
Jan 31, 2008
by
Andre Wisplinghoff
Committed by
Alexandre Julliard
Feb 04, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winecfg: Enable add button when choosing lib from combobox (Libraries tabsheet).
parent
c9f5f2c6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
libraries.c
programs/winecfg/libraries.c
+5
-1
No files found.
programs/winecfg/libraries.c
View file @
9bf3355a
...
@@ -408,10 +408,14 @@ static void init_libsheet(HWND dialog)
...
@@ -408,10 +408,14 @@ static void init_libsheet(HWND dialog)
static
void
on_add_combo_change
(
HWND
dialog
)
static
void
on_add_combo_change
(
HWND
dialog
)
{
{
char
buffer
[
1024
];
char
buffer
[
1024
];
int
sel
,
len
;
SendDlgItemMessage
(
dialog
,
IDC_DLLCOMBO
,
WM_GETTEXT
,
sizeof
(
buffer
),
(
LPARAM
)
buffer
);
SendDlgItemMessage
(
dialog
,
IDC_DLLCOMBO
,
WM_GETTEXT
,
sizeof
(
buffer
),
(
LPARAM
)
buffer
);
/* if lib was chosen from combobox, we reveive an empty buffer, check manually */
sel
=
SendDlgItemMessage
(
dialog
,
IDC_DLLCOMBO
,
CB_GETCURSEL
,
0
,
0
);
len
=
SendDlgItemMessage
(
dialog
,
IDC_DLLCOMBO
,
CB_GETLBTEXTLEN
,
sel
,
0
);
if
(
strlen
(
buffer
))
if
(
strlen
(
buffer
)
>
0
||
len
>
0
)
enable
(
IDC_DLLS_ADDDLL
)
enable
(
IDC_DLLS_ADDDLL
)
else
else
disable
(
IDC_DLLS_ADDDLL
);
disable
(
IDC_DLLS_ADDDLL
);
...
...
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