Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
317cd9b8
Commit
317cd9b8
authored
Jul 16, 2005
by
Rocky Bernstein
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A bug in libvcdinfo <= 23 prevents C++ compilations.
parent
e6aec2bc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
5 deletions
+9
-5
modules/gui/wxwindows/open.cpp
modules/gui/wxwindows/open.cpp
+9
-5
No files found.
modules/gui/wxwindows/open.cpp
View file @
317cd9b8
...
@@ -34,9 +34,13 @@
...
@@ -34,9 +34,13 @@
#include <cdio/cdio.h>
#include <cdio/cdio.h>
#include <cdio/cd_types.h>
#include <cdio/cd_types.h>
#endif
/* HAVE_LIBCDIO */
#endif
/* HAVE_LIBCDIO */
#ifdef HAVE_VCDINFO
#ifdef HAVE_VCDINFO
#include <libvcd/info.h>
#include <libvcd/version.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 */
#endif
/* HAVE_VCDINFO */
#include <wx/combobox.h>
#include <wx/combobox.h>
...
@@ -671,10 +675,10 @@ wxPanel *OpenDialog::DiscPanel( wxWindow* parent )
...
@@ -671,10 +675,10 @@ wxPanel *OpenDialog::DiscPanel( wxWindow* parent )
disc_probe
=
new
wxCheckBox
(
panel
,
DiscProbe_Event
,
disc_probe
=
new
wxCheckBox
(
panel
,
DiscProbe_Event
,
wxU
(
_
(
"Probe Disc"
))
);
wxU
(
_
(
"Probe Disc"
))
);
disc_probe
->
SetToolTip
(
wxU
(
_
(
"Probe for a DVD, VCD or audio CD. "
disc_probe
->
SetToolTip
(
wxU
(
_
(
"Probe for a DVD, VCD or audio CD. "
"First try the
device name entered for the selected d
isc type "
"First try the
Device name entered for the selected D
isc type "
"(DVD, DVD Menu, VCD,
CDDA). If that doesn't find media, try any device for
"
"(DVD, DVD Menu, VCD,
audio CD). If that doesn't find media, try any device
"
"
the disc type. If that doesn't work, then try looking for CD-ROMs or DVD
"
"
for the Disc type. If that doesn't work, then try looking for CD-ROMs or
"
"
drives. The disc type, d
evice name, and some parameter ranges are set "
"
DVD drives. The Disc type, D
evice name, and some parameter ranges are set "
"based on media we find."
))
);
"based on media we find."
))
);
#endif
#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