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
ef60a430
Commit
ef60a430
authored
Jul 21, 2009
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: forward-port [d0fbd04ce361f9dbc16d44dae09c168db708b3a3]
parent
ff1dd682
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
modules/gui/macosx/update.m
modules/gui/macosx/update.m
+9
-9
No files found.
modules/gui/macosx/update.m
View file @
ef60a430
...
...
@@ -55,15 +55,6 @@ static VLCUpdate *_o_sharedInstance = nil;
}
else
{
_o_sharedInstance
=
[
super
init
];
b_checked
=
false
;
/* clean the interface */
[
o_fld_releaseNote
setString
:
@""
];
[
o_fld_currentVersion
setString
:
@""
];
/* translate strings to the user's language */
[
o_update_window
setTitle
:
_NS
(
"Check for Updates"
)];
[
o_btn_DownloadNow
setTitle
:
_NS
(
"Download now"
)];
[
o_btn_okay
setTitle
:
_NS
(
"OK"
)];
[
o_chk_updateOnStartup
setTitle
:
_NS
(
"Automatically check for updates"
)];
}
return
_o_sharedInstance
;
...
...
@@ -76,6 +67,15 @@ static VLCUpdate *_o_sharedInstance = nil;
-
(
void
)
awakeFromNib
{
/* clean the interface */
[
o_fld_releaseNote
setString
:
@""
];
[
o_fld_currentVersion
setStringValue
:
@""
];
/* translate strings to the user's language */
[
o_update_window
setTitle
:
_NS
(
"Check for Updates"
)];
[
o_btn_DownloadNow
setTitle
:
_NS
(
"Download now"
)];
[
o_btn_okay
setTitle
:
_NS
(
"OK"
)];
[
o_chk_updateOnStartup
setTitle
:
_NS
(
"Automatically check for updates"
)];
/* we don't use - (BOOL)shouldCheckUpdateOnStartup because we don't want
* the Alert panel to pop up at this time */
[
o_chk_updateOnStartup
setState
:
[[
NSUserDefaults
standardUserDefaults
]
boolForKey
:
kPrefUpdateOnStartup
]];
...
...
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