Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
317cd9b8
Commit
317cd9b8
authored
Jul 16, 2005
by
Rocky Bernstein
Browse files
A bug in libvcdinfo <= 23 prevents C++ compilations.
parent
e6aec2bc
Changes
1
Show whitespace changes
Inline
Side-by-side
modules/gui/wxwindows/open.cpp
View file @
317cd9b8
...
...
@@ -34,9 +34,13 @@
#include <cdio/cdio.h>
#include <cdio/cd_types.h>
#endif
/* HAVE_LIBCDIO */
#ifdef HAVE_VCDINFO
#include <libvcd/info.h>
#include <libvcd/version.h>
/* There was a bug in libvcdinfo <= 23 which prevented C++ compilation */
#if LIBVCD_VERSION_NUM > 23
#include <libvcd/info.h>
#endif
/* LIBVCD_VERSION_NUM > 23 */
#endif
/* HAVE_VCDINFO */
#include <wx/combobox.h>
...
...
@@ -671,10 +675,10 @@ wxPanel *OpenDialog::DiscPanel( wxWindow* parent )
disc_probe
=
new
wxCheckBox
(
panel
,
DiscProbe_Event
,
wxU
(
_
(
"Probe Disc"
))
);
disc_probe
->
SetToolTip
(
wxU
(
_
(
"Probe for a DVD, VCD or audio CD. "
"First try the
d
evice name entered for the selected
d
isc type "
"(DVD, DVD Menu, VCD, CD
DA
). If that doesn't find media, try any device
for
"
"the
d
isc type. If that doesn't work, then try looking for CD-ROMs or
DVD
"
"drives. The
d
isc type,
d
evice name, and some parameter ranges are set "
"First try the
D
evice name entered for the selected
D
isc type "
"(DVD, DVD Menu, VCD,
audio
CD). If that doesn't find media, try any device "
"
for
the
D
isc type. If that doesn't work, then try looking for CD-ROMs or "
"
DVD
drives. The
D
isc type,
D
evice name, and some parameter ranges are set "
"based on media we find."
))
);
#endif
...
...
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