]> git.sesse.net Git - vlc/blob - modules/gui/skins2/commands/cmd_playtree.cpp
skins2: fix memory leak (a malloc not paired with a free)
[vlc] / modules / gui / skins2 / commands / cmd_playtree.cpp
1 /*****************************************************************************
2  * cmd_playtree.cpp
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Antoine Cellerier <dionoea@videolan.org>
8  *          ClĂ©ment Stenac <zorglub@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License along
21  * with this program; if not, write to the Free Software Foundation, Inc.,
22  * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #include "cmd_playtree.hpp"
26 #include <vlc_playlist.h>
27 #include "../src/vlcproc.hpp"
28 #include "../utils/var_bool.hpp"
29
30 void CmdPlaytreeDel::execute()
31 {
32     m_rTree.delSelected();
33 }
34
35 void CmdPlaytreeSort::execute()
36 {
37     /// \todo Choose sort method/order - Need more commands
38     /// \todo Choose the correct view
39     playlist_t *p_playlist = getIntf()->p_sys->p_playlist;
40     PL_LOCK;
41     playlist_RecursiveNodeSort( p_playlist, p_playlist->p_root_onelevel,
42                                 SORT_TITLE, ORDER_NORMAL );
43     PL_UNLOCK;
44
45     // Ask for rebuild
46     VlcProc::instance( getIntf() )->getPlaytreeVar().onChange();
47 }