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
dff2e609
Commit
dff2e609
authored
May 18, 2014
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: add a bunch of virtual for destructors
parent
f0bde3b9
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
8 additions
and
8 deletions
+8
-8
modules/gui/qt4/adapters/variables.hpp
modules/gui/qt4/adapters/variables.hpp
+1
-1
modules/gui/qt4/components/epg/EPGView.hpp
modules/gui/qt4/components/epg/EPGView.hpp
+1
-1
modules/gui/qt4/components/playlist/playlist_model.hpp
modules/gui/qt4/components/playlist/playlist_model.hpp
+1
-1
modules/gui/qt4/dialogs/external.hpp
modules/gui/qt4/dialogs/external.hpp
+1
-1
modules/gui/qt4/dialogs/fingerprintdialog.hpp
modules/gui/qt4/dialogs/fingerprintdialog.hpp
+1
-1
modules/gui/qt4/managers/addons_manager.hpp
modules/gui/qt4/managers/addons_manager.hpp
+2
-2
modules/gui/qt4/util/input_slider.hpp
modules/gui/qt4/util/input_slider.hpp
+1
-1
No files found.
modules/gui/qt4/adapters/variables.hpp
View file @
dff2e609
...
@@ -40,7 +40,7 @@ private:
...
@@ -40,7 +40,7 @@ private:
public:
public:
QVLCVariable
(
vlc_object_t
*
,
const
char
*
,
int
,
bool
);
QVLCVariable
(
vlc_object_t
*
,
const
char
*
,
int
,
bool
);
~
QVLCVariable
(
void
);
virtual
~
QVLCVariable
(
void
);
};
};
class
QVLCPointer
:
public
QVLCVariable
class
QVLCPointer
:
public
QVLCVariable
...
...
modules/gui/qt4/components/epg/EPGView.hpp
View file @
dff2e609
...
@@ -53,7 +53,7 @@ Q_OBJECT
...
@@ -53,7 +53,7 @@ Q_OBJECT
public:
public:
explicit
EPGView
(
QWidget
*
parent
=
0
);
explicit
EPGView
(
QWidget
*
parent
=
0
);
~
EPGView
();
virtual
~
EPGView
();
void
setScale
(
double
scaleFactor
);
void
setScale
(
double
scaleFactor
);
...
...
modules/gui/qt4/components/playlist/playlist_model.hpp
View file @
dff2e609
...
@@ -172,7 +172,7 @@ class PlMimeData : public QMimeData
...
@@ -172,7 +172,7 @@ class PlMimeData : public QMimeData
public:
public:
PlMimeData
()
{}
PlMimeData
()
{}
~
PlMimeData
();
virtual
~
PlMimeData
();
void
appendItem
(
input_item_t
*
p_item
);
void
appendItem
(
input_item_t
*
p_item
);
QList
<
input_item_t
*>
inputItems
()
const
;
QList
<
input_item_t
*>
inputItems
()
const
;
QStringList
formats
()
const
;
QStringList
formats
()
const
;
...
...
modules/gui/qt4/dialogs/external.hpp
View file @
dff2e609
...
@@ -40,7 +40,7 @@ class DialogHandler : public QObject
...
@@ -40,7 +40,7 @@ class DialogHandler : public QObject
public:
public:
DialogHandler
(
intf_thread_t
*
,
QObject
*
parent
);
DialogHandler
(
intf_thread_t
*
,
QObject
*
parent
);
~
DialogHandler
(
void
);
virtual
~
DialogHandler
(
void
);
private:
private:
intf_thread_t
*
intf
;
intf_thread_t
*
intf
;
...
...
modules/gui/qt4/dialogs/fingerprintdialog.hpp
View file @
dff2e609
...
@@ -43,7 +43,7 @@ class FingerprintDialog : public QDialog
...
@@ -43,7 +43,7 @@ class FingerprintDialog : public QDialog
public:
public:
FingerprintDialog
(
QWidget
*
parent
,
intf_thread_t
*
p_intf
,
FingerprintDialog
(
QWidget
*
parent
,
intf_thread_t
*
p_intf
,
input_item_t
*
p_item
);
input_item_t
*
p_item
);
~
FingerprintDialog
();
virtual
~
FingerprintDialog
();
private:
private:
Ui
::
FingerprintDialog
*
ui
;
Ui
::
FingerprintDialog
*
ui
;
...
...
modules/gui/qt4/managers/addons_manager.hpp
View file @
dff2e609
...
@@ -47,7 +47,7 @@ public:
...
@@ -47,7 +47,7 @@ public:
{
{
addon_entry_Hold
(
p_entry
);
addon_entry_Hold
(
p_entry
);
}
}
~
AddonManagerEvent
()
virtual
~
AddonManagerEvent
()
{
{
addon_entry_Release
(
p_entry
);
addon_entry_Release
(
p_entry
);
}
}
...
@@ -65,7 +65,7 @@ class AddonsManager : public QObject, public Singleton<AddonsManager>
...
@@ -65,7 +65,7 @@ class AddonsManager : public QObject, public Singleton<AddonsManager>
public:
public:
AddonsManager
(
intf_thread_t
*
);
AddonsManager
(
intf_thread_t
*
);
~
AddonsManager
();
virtual
~
AddonsManager
();
static
void
addonsEventsCallback
(
const
vlc_event_t
*
,
void
*
);
static
void
addonsEventsCallback
(
const
vlc_event_t
*
,
void
*
);
void
customEvent
(
QEvent
*
);
void
customEvent
(
QEvent
*
);
void
install
(
QByteArray
id
);
void
install
(
QByteArray
id
);
...
...
modules/gui/qt4/util/input_slider.hpp
View file @
dff2e609
...
@@ -56,7 +56,7 @@ class SeekSlider : public QSlider
...
@@ -56,7 +56,7 @@ class SeekSlider : public QSlider
Q_PROPERTY
(
qreal
handleOpacity
READ
handleOpacity
WRITE
setHandleOpacity
)
Q_PROPERTY
(
qreal
handleOpacity
READ
handleOpacity
WRITE
setHandleOpacity
)
public:
public:
SeekSlider
(
Qt
::
Orientation
q
,
QWidget
*
_parent
=
0
,
bool
_classic
=
false
);
SeekSlider
(
Qt
::
Orientation
q
,
QWidget
*
_parent
=
0
,
bool
_classic
=
false
);
~
SeekSlider
();
virtual
~
SeekSlider
();
void
setChapters
(
SeekPoints
*
);
void
setChapters
(
SeekPoints
*
);
protected:
protected:
...
...
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