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
8f85cbbc
Commit
8f85cbbc
authored
Jul 26, 2005
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wxWidget 2.4 fix
parent
7258307b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
modules/gui/wxwindows/updatevlc.cpp
modules/gui/wxwindows/updatevlc.cpp
+8
-0
No files found.
modules/gui/wxwindows/updatevlc.cpp
View file @
8f85cbbc
...
...
@@ -128,11 +128,19 @@ UpdateVLC::UpdateVLC( intf_thread_t *_p_intf, wxWindow *p_parent ):
new
wxButton
(
panel
,
CheckForUpdate_Event
,
wxU
(
_
(
"Check for updates now !"
))
);
subpanel_sizer
->
Add
(
update_button
,
0
,
wxALL
,
5
);
//wxChoice constructor prototype changes with 2.5
#if wxCHECK_VERSION(2,5,0)
wxArrayString
*
choices_array
=
new
wxArrayString
();
choices_array
->
Add
(
wxT
(
""
)
);
mirrors_choice
=
new
wxChoice
(
panel
,
MirrorChoice_Event
,
wxDefaultPosition
,
wxSize
(
200
,
-
1
),
*
choices_array
);
#else
wxString
choices_array
=
wxT
(
""
);
mirrors_choice
=
new
wxChoice
(
panel
,
-
1
,
wxDefaultPosition
,
wxSize
(
200
,
-
1
),
1
,
*
choices_array
);
#endif
subpanel_sizer
->
Add
(
mirrors_choice
,
0
,
wxALL
,
5
);
subpanel_sizer
->
Layout
();
panel_sizer
->
Add
(
subpanel_sizer
,
0
,
wxALL
,
0
);
...
...
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