Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
6421559c
Commit
6421559c
authored
Feb 13, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
XCB SD: allow running even if there is no ICCCM window manager
parent
88f28b24
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
modules/services_discovery/xcb_apps.c
modules/services_discovery/xcb_apps.c
+4
-6
No files found.
modules/services_discovery/xcb_apps.c
View file @
6421559c
...
...
@@ -146,13 +146,11 @@ static int Open (vlc_object_t *obj)
r
=
xcb_intern_atom_reply
(
conn
,
ncl
,
NULL
);
if
(
r
==
NULL
||
r
->
atom
==
0
)
{
dialog_Fatal
(
sd
,
_
(
"Application list failure"
),
_
(
"Your window manager does not support application list."
));
msg_Err
(
sd
,
"application list not support (_NET_CLIENT_LIST absent)"
);
free
(
r
);
goto
error
;
dialog_Fatal
(
sd
,
_
(
"Screen capture"
),
_
(
"Your window manager does not provide a list of applications."
));
msg_Err
(
sd
,
"client list not supported (_NET_CLIENT_LIST absent)"
);
}
p_sys
->
net_client_list
=
r
->
atom
;
p_sys
->
net_client_list
=
r
?
r
->
atom
:
0
;
free
(
r
);
r
=
xcb_intern_atom_reply
(
conn
,
nwn
,
NULL
);
if
(
r
!=
NULL
)
...
...
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