Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
aff83501
Commit
aff83501
authored
Mar 01, 2012
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: fixed a crash
parent
54ff6997
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
modules/gui/macosx/coredialogs.m
modules/gui/macosx/coredialogs.m
+3
-1
No files found.
modules/gui/macosx/coredialogs.m
View file @
aff83501
...
...
@@ -165,6 +165,7 @@ static VLCCoreDialogProvider *_o_sharedInstance = nil;
{
/* we work-around a Cocoa limitation here, since you cannot delay an execution
* on the main thread within a single call */
b_progress_cancelled
=
NO
;
if
(
VLCIntf
)
[
self
performSelector
:
@selector
(
showProgressDialog
:)
withObject
:
o_value
afterDelay
:
3
.
00
];
}
...
...
@@ -173,7 +174,7 @@ static VLCCoreDialogProvider *_o_sharedInstance = nil;
{
dialog_progress_bar_t
*
p_dialog
=
[
o_value
pointerValue
];
if
(
!
p_dialog
)
if
(
!
p_dialog
||
b_progress_cancelled
)
return
;
if
(
p_dialog
->
title
!=
NULL
)
...
...
@@ -211,6 +212,7 @@ static VLCCoreDialogProvider *_o_sharedInstance = nil;
-
(
void
)
destroyProgressPanel
{
b_progress_cancelled
=
YES
;
[
o_prog_bar
stopAnimation
:
self
];
[
o_prog_win
close
];
}
...
...
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