1
mirror of https://code.videolan.org/videolan/vlc synced 2024-10-07 03:56:28 +02:00

skins2: cmd_callbacks: remove no-op destructors

The parent class destructor is already virtual, so there is no need for
an empty destructor. The destructor has been useless since the commit
a18c4d6570.
This commit is contained in:
Alexandre Janniaux 2022-05-12 19:01:59 +02:00 committed by Jean-Baptiste Kempf
parent cc83e3d608
commit a925e7178c

View File

@ -38,9 +38,6 @@ public:
m_label( label ), m_pfExecute( func )
{
}
virtual ~CmdCallback()
{
}
virtual void execute()
{
if( !m_pfExecute )
@ -68,10 +65,6 @@ public:
vlc_cond_init( &m_wait );
}
virtual ~CmdExecuteBlock()
{
}
static void executeWait( const CmdGenericPtr& rcCommand )
{
CmdExecuteBlock& rCmd = (CmdExecuteBlock&)*rcCommand.get();