Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
fa699c8b
Commit
fa699c8b
authored
Sep 15, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable auto-update.
parent
f63666d1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
modules/control/rc.c
modules/control/rc.c
+2
-2
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+2
-2
modules/gui/wxwidgets/dialogs.cpp
modules/gui/wxwidgets/dialogs.cpp
+2
-2
No files found.
modules/control/rc.c
View file @
fa699c8b
...
...
@@ -820,10 +820,10 @@ static void Run( intf_thread_t *p_intf )
Help
(
p_intf
,
b_longhelp
);
}
else
if
(
!
strcmp
(
psz_cmd
,
"check-updates"
)
)
/*
else if( !strcmp( psz_cmd, "check-updates" ) )
{
checkUpdates( p_intf, psz_arg );
}
}
*/
else
switch
(
psz_cmd
[
0
]
)
{
case
'f'
:
...
...
modules/gui/macosx/intf.m
View file @
fa699c8b
...
...
@@ -1763,13 +1763,13 @@ static VLCMain *_o_sharedMainInstance = nil;
-
(
IBAction
)
checkForUpdate
:(
id
)
sender
{
if
(
!
nib_update_loaded
)
/*
if (!nib_update_loaded)
{
nib_update_loaded = [NSBundle loadNibNamed:@"Update" owner:self];
[o_update showUpdateWindow];
} else {
[o_update showUpdateWindow];
}
}
*/
}
-
(
IBAction
)
closeError
:(
id
)
sender
...
...
modules/gui/wxwidgets/dialogs.cpp
View file @
fa699c8b
...
...
@@ -549,8 +549,8 @@ void DialogsProvider::OnExitThread( wxCommandEvent& WXUNUSED(event) )
void
DialogsProvider
::
OnUpdateVLC
(
wxCommandEvent
&
WXUNUSED
(
event
)
)
{
/* Show/hide the file info window */
if
(
!
p_updatevlc_dialog
)
p_updatevlc_dialog
=
new
UpdateVLC
(
p_intf
,
this
);
/*
if( !p_updatevlc_dialog )
p_updatevlc_dialog = new UpdateVLC( p_intf, this );
*/
if
(
p_updatevlc_dialog
)
{
...
...
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