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
818a663e
Commit
818a663e
authored
Feb 27, 2008
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix macosx update gui
parent
4bacd996
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
modules/gui/macosx/update.m
modules/gui/macosx/update.m
+4
-2
No files found.
modules/gui/macosx/update.m
View file @
818a663e
...
...
@@ -173,12 +173,14 @@ static VLCUpdate *_o_sharedInstance = nil;
if
(
uptodate
)
{
[
o_fld_releaseNote
setString
:
[
NSString
string
]];
[
o_fld_currentVersion
setStringValue
:
[
NSString
string
]];
[
o_fld_status
setStringValue
:
_NS
(
"This version of VLC is the latest available."
)];
[
o_btn_DownloadNow
setEnabled
:
NO
];
}
else
{
[
o_fld_releaseNote
setString
:
[
NSString
stringWithUTF8String
:
(
p_u
->
release
.
psz_desc
)]];
[
o_fld_releaseNote
setString
:
[
NSString
stringWithUTF8String
:
(
p_u
->
release
.
psz_desc
?
p_u
->
release
.
psz_desc
:
""
)]];
[
o_fld_status
setStringValue
:
_NS
(
"This version of VLC is outdated."
)];
[
o_fld_currentVersion
setStringValue
:
[
NSString
stringWithFormat
:
_NS
(
"The current release is %d.%d.%d%c."
),
p_u
->
release
.
i_major
,
...
...
@@ -195,7 +197,7 @@ static VLCUpdate *_o_sharedInstance = nil;
static
void
updateCallback
(
void
*
p_data
,
vlc_bool_t
b_success
)
{
[(
id
)
p_data
setUpToDate
:
b_success
&&
update_CompareReleaseToCurrent
(
((
VLCUpdate
*
)
p_data
)
->
p_u
)
==
UpdateReleaseStatusNewer
];
[(
id
)
p_data
setUpToDate
:
!
b_success
||
update_CompareReleaseToCurrent
(
((
VLCUpdate
*
)
p_data
)
->
p_u
)
==
UpdateReleaseStatusNewer
];
}
-
(
void
)
checkForUpdate
...
...
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