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
f6f0e8ef
Commit
f6f0e8ef
authored
Dec 14, 2005
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix no
parent
c854d8e8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
modules/gui/wxwidgets/dialogs/interaction.cpp
modules/gui/wxwidgets/dialogs/interaction.cpp
+1
-1
src/interface/interaction.c
src/interface/interaction.c
+5
-1
No files found.
modules/gui/wxwidgets/dialogs/interaction.cpp
View file @
f6f0e8ef
...
...
@@ -46,7 +46,7 @@ BEGIN_EVENT_TABLE( InteractionDialog, wxFrame )
EVT_BUTTON
(
wxID_OK
,
InteractionDialog
::
OnOkYes
)
EVT_BUTTON
(
wxID_YES
,
InteractionDialog
::
OnOkYes
)
EVT_BUTTON
(
wxID_CANCEL
,
InteractionDialog
::
OnCancel
)
EVT_BUTTON
(
No_Event
,
InteractionDialog
::
OnNo
)
EVT_BUTTON
(
wxID_NO
,
InteractionDialog
::
OnNo
)
EVT_BUTTON
(
wxID_CLEAR
,
InteractionDialog
::
OnClear
)
EVT_CHECKBOX
(
NoShow_Event
,
InteractionDialog
::
OnNoShow
)
END_EVENT_TABLE
()
...
...
src/interface/interaction.c
View file @
f6f0e8ef
...
...
@@ -376,7 +376,11 @@ void __intf_UserProgressUpdate( vlc_object_t *p_this, int i_id,
vlc_mutex_lock
(
&
p_interaction
->
object_lock
);
p_dialog
=
intf_InteractionGetById
(
p_this
,
i_id
);
if
(
!
p_dialog
)
return
;
if
(
!
p_dialog
)
{
vlc_mutex_unlock
(
&
p_intearction
->
object_lock
)
;
return
;
}
if
(
p_dialog
->
pp_widgets
[
0
]
->
psz_text
)
free
(
p_dialog
->
pp_widgets
[
0
]
->
psz_text
);
...
...
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