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
d35c6eef
Commit
d35c6eef
authored
Feb 14, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/gui/wxwindows/*: make gcc-2.95 happy.
parent
d09106d2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
11 deletions
+19
-11
modules/gui/wxwindows/open.cpp
modules/gui/wxwindows/open.cpp
+16
-8
modules/gui/wxwindows/subtitles.cpp
modules/gui/wxwindows/subtitles.cpp
+3
-3
No files found.
modules/gui/wxwindows/open.cpp
View file @
d35c6eef
...
...
@@ -2,7 +2,7 @@
* open.cpp : wxWindows plugin for vlc
*****************************************************************************
* Copyright (C) 2000-2004 VideoLAN
* $Id: open.cpp,v 1.6
8 2004/02/08 18:17:22
gbazin Exp $
* $Id: open.cpp,v 1.6
9 2004/02/14 12:36:16
gbazin Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -1038,23 +1038,28 @@ void OpenDialog::OnDiscTypeChange( wxCommandEvent& WXUNUSED(event) )
/* Fall through... */
case
1
:
/* DVD of some sort */
{
psz_device
=
config_GetPsz
(
p_intf
,
"dvd"
);
if
(
!
b_disc_device_changed
)
{
disc_device
->
SetValue
(
psz_device
?
wxL2U
(
psz_device
)
:
wxT
(
""
)
);
if
(
psz_device
)
disc_device
->
SetValue
(
wxL2U
(
psz_device
)
);
else
disc_device
->
SetValue
(
wxT
(
""
)
);
disc_title_label
->
SetLabel
(
wxU
(
_
(
"Title"
))
);
}
disc_title
->
SetRange
(
i_selection
,
255
);
disc_title
->
SetValue
(
i_selection
);
break
;
}
case
2
:
/* VCD of some sort */
psz_device
=
config_GetPsz
(
p_intf
,
"vcd"
);
if
(
!
b_disc_device_changed
)
{
disc_device
->
SetValue
(
psz_device
?
wxL2U
(
psz_device
)
:
wxT
(
""
)
);
if
(
psz_device
)
disc_device
->
SetValue
(
wxL2U
(
psz_device
)
);
else
disc_device
->
SetValue
(
wxT
(
""
)
);
}
/* There are at most 98, tracks in a VCD, 999 Segments, 500 entries
...
...
@@ -1063,7 +1068,7 @@ void OpenDialog::OnDiscTypeChange( wxCommandEvent& WXUNUSED(event) )
FIXME: it would be better however to get the information for
this particular Media possibly from the General Info area.
*/
*/
#ifdef HAVE_VCDX
disc_title_label
->
SetLabel
(
config_GetInt
(
p_intf
,
"vcdx-PBC"
)
?
wxT
(
"Playback LID"
)
:
wxT
(
"Entry"
)
);
...
...
@@ -1080,7 +1085,10 @@ void OpenDialog::OnDiscTypeChange( wxCommandEvent& WXUNUSED(event) )
psz_device
=
config_GetPsz
(
p_intf
,
"cd-audio"
);
if
(
!
b_disc_device_changed
)
{
disc_device
->
SetValue
(
psz_device
?
wxL2U
(
psz_device
)
:
wxT
(
""
)
);
if
(
psz_device
)
disc_device
->
SetValue
(
wxL2U
(
psz_device
)
);
else
disc_device
->
SetValue
(
wxT
(
""
)
);
}
disc_title_label
->
SetLabel
(
wxU
(
_
(
"Track"
))
);
#ifdef HAVE_CDDAX
...
...
@@ -1092,7 +1100,7 @@ void OpenDialog::OnDiscTypeChange( wxCommandEvent& WXUNUSED(event) )
break
;
default:
msg_Err
(
p_intf
,
"invalid Disc type selection (%d)"
,
disc_type
->
GetSelection
()
);
disc_type
->
GetSelection
()
);
break
;
}
...
...
modules/gui/wxwindows/subtitles.cpp
View file @
d35c6eef
...
...
@@ -2,7 +2,7 @@
* subtitles.cpp : wxWindows plugin for vlc
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: subtitles.cpp,v 1.1
0 2004/01/25 03:29:02 hartma
n Exp $
* $Id: subtitles.cpp,v 1.1
1 2004/02/14 12:36:16 gbazi
n Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -83,8 +83,8 @@ SubsFileDialog::SubsFileDialog( intf_thread_t *_p_intf, wxWindow* _p_parent ):
wxStaticBoxSizer
*
file_sizer
=
new
wxStaticBoxSizer
(
file_box
,
wxHORIZONTAL
);
char
*
psz_subsfile
=
config_GetPsz
(
p_intf
,
"sub-file"
);
file_combo
=
new
wxComboBox
(
panel
,
-
1
,
psz_subsfile
?
wxL2U
(
psz_subsfile
)
:
wxT
(
""
),
if
(
!
psz_subsfile
)
psz_subsfile
=
strdup
(
""
);
file_combo
=
new
wxComboBox
(
panel
,
-
1
,
wxL2U
(
psz_subsfile
),
wxPoint
(
20
,
25
),
wxSize
(
300
,
-
1
),
0
,
NULL
);
if
(
psz_subsfile
)
free
(
psz_subsfile
);
wxButton
*
browse_button
=
new
wxButton
(
panel
,
FileBrowse_Event
,
...
...
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