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
9e11ce64
Commit
9e11ce64
authored
Apr 06, 2009
by
basos g
Committed by
Rémi Duraffort
Apr 28, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CLEAN QT4 fix some memory leaks. Reorgazine code
(hacked a bit) Signed-off-by:
Rémi Duraffort
<
ivoire@videolan.org
>
parent
e35dcda6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
modules/gui/qt4/components/open_panels.cpp
modules/gui/qt4/components/open_panels.cpp
+7
-6
No files found.
modules/gui/qt4/components/open_panels.cpp
View file @
9e11ce64
...
...
@@ -1294,7 +1294,8 @@ void CaptureOpenPanel::advancedDialog()
module_config_t
*
p_item
=
p_config
+
n
;
ConfigControl
*
config
=
ConfigControl
::
createControl
(
VLC_OBJECT
(
p_intf
),
p_item
,
advFrame
,
gLayout
,
n
);
controls
.
append
(
config
);
if
(
config
)
controls
.
append
(
config
);
}
/* Button stuffs */
...
...
@@ -1317,11 +1318,6 @@ void CaptureOpenPanel::advancedDialog()
for
(
int
i
=
0
;
i
<
controls
.
size
();
i
++
)
{
ConfigControl
*
control
=
controls
[
i
];
if
(
!
control
)
{
msg_Dbg
(
p_intf
,
"This shouldn't happen, please report"
);
continue
;
}
tempMRL
+=
(
i
?
" :"
:
":"
);
...
...
@@ -1351,6 +1347,11 @@ void CaptureOpenPanel::advancedDialog()
updateMRL
();
msg_Dbg
(
p_intf
,
"%s"
,
qtu
(
advMRL
)
);
}
for
(
int
i
=
0
;
i
<
controls
.
size
();
i
++
)
{
ConfigControl
*
control
=
controls
[
i
];
delete
control
;
}
delete
adv
;
module_config_free
(
p_config
);
module_release
(
p_module
);
...
...
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