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
8290233b
Commit
8290233b
authored
Mar 02, 2012
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: extensioninfo dialog: remove unused member
parent
474f8390
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
13 deletions
+3
-13
modules/gui/qt4/dialogs/plugins.cpp
modules/gui/qt4/dialogs/plugins.cpp
+3
-9
modules/gui/qt4/dialogs/plugins.hpp
modules/gui/qt4/dialogs/plugins.hpp
+0
-4
No files found.
modules/gui/qt4/dialogs/plugins.cpp
View file @
8290233b
...
...
@@ -187,8 +187,8 @@ bool PluginTreeItem::operator< ( const QTreeWidgetItem & other ) const
}
/* Extensions tab */
ExtensionTab
::
ExtensionTab
(
intf_thread_t
*
p_intf
)
:
QVLCFrame
(
p_intf
)
ExtensionTab
::
ExtensionTab
(
intf_thread_t
*
p_intf
_
)
:
QVLCFrame
(
p_intf
_
)
{
// Layout
QVBoxLayout
*
layout
=
new
QVBoxLayout
(
this
);
...
...
@@ -491,8 +491,7 @@ QSize ExtensionItemDelegate::sizeHint( const QStyleOptionViewItem &option,
ExtensionInfoDialog
::
ExtensionInfoDialog
(
const
ExtensionCopy
&
extension
,
intf_thread_t
*
p_intf
,
QWidget
*
parent
)
:
QVLCDialog
(
parent
,
p_intf
),
extension
(
new
ExtensionCopy
(
extension
)
)
:
QVLCDialog
(
parent
,
p_intf
)
{
// Let's be a modal dialog
setWindowModality
(
Qt
::
WindowModal
);
...
...
@@ -576,11 +575,6 @@ ExtensionInfoDialog::ExtensionInfoDialog( const ExtensionCopy& extension,
setMinimumSize
(
450
,
350
);
}
ExtensionInfoDialog
::~
ExtensionInfoDialog
()
{
delete
extension
;
}
static
QPixmap
*
loadPixmapFromData
(
char
*
data
,
int
size
)
{
if
(
!
data
||
size
<=
0
)
...
...
modules/gui/qt4/dialogs/plugins.hpp
View file @
8290233b
...
...
@@ -163,10 +163,6 @@ class ExtensionInfoDialog : public QVLCDialog
public:
ExtensionInfoDialog
(
const
ExtensionCopy
&
extension
,
intf_thread_t
*
p_intf
,
QWidget
*
parent
);
virtual
~
ExtensionInfoDialog
();
private:
ExtensionCopy
*
extension
;
};
#endif
...
...
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