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
e18ee6e3
Commit
e18ee6e3
authored
Jul 27, 2005
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for wxMSW
parent
d322bf1e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
modules/gui/wxwindows/updatevlc.cpp
modules/gui/wxwindows/updatevlc.cpp
+3
-1
No files found.
modules/gui/wxwindows/updatevlc.cpp
View file @
e18ee6e3
...
...
@@ -118,6 +118,7 @@ UpdateVLC::UpdateVLC( intf_thread_t *_p_intf, wxWindow *p_parent ):
new
wxTreeCtrl
(
panel
,
UpdatesTreeActivate_Event
,
wxDefaultPosition
,
wxSize
(
400
,
200
),
wxTR_HAS_BUTTONS
|
wxTR_HIDE_ROOT
|
wxSUNKEN_BORDER
);
updates_tree
->
AddRoot
(
wxU
(
_
(
"root"
)),
-
1
,
-
1
,
NULL
);
/* Place everything in sizers */
wxBoxSizer
*
main_sizer
=
new
wxBoxSizer
(
wxVERTICAL
);
...
...
@@ -499,7 +500,7 @@ void UpdateVLC::UpdateUpdatesTree()
updates_tree
->
DeleteAllItems
();
/* build tree */
parent
=
updates_tree
->
AppendItem
(
updates_root
,
wxT
(
""
)
);
parent
=
updates_tree
->
AddRoot
(
wxU
(
_
(
"root"
)),
-
1
,
-
1
,
NULL
);
updates_tree
->
AppendItem
(
parent
,
wxT
(
"Current version : VLC media player "
PACKAGE_VERSION_MAJOR
"."
PACKAGE_VERSION_MINOR
"."
PACKAGE_VERSION_REVISION
"-"
PACKAGE_VERSION_EXTRA
),
-
1
,
-
1
,
new
UpdatesTreeItem
(
wxT
(
""
)
));
...
...
@@ -555,6 +556,7 @@ void UpdateVLC::UpdateUpdatesTree()
}
it
++
;
updates_tree
->
Expand
(
cat
);
updates_tree
->
Expand
(
parent
);
}
}
...
...
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