Commit ef92feef authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt, playlist: fix copyright and small change

parent a3b7bce4
/***************************************************************************** /*****************************************************************************
* playlist_item.cpp : Manage playlist item * playlist_item.cpp : Manage playlist item
**************************************************************************** ****************************************************************************
* Copyright © 2006-2008 the VideoLAN team * Copyright © 2006-2011 the VideoLAN team
* $Id$ * $Id$
* *
* Authors: Clément Stenac <zorglub@videolan.org> * Authors: Clément Stenac <zorglub@videolan.org>
...@@ -76,12 +76,12 @@ PLItem::~PLItem() ...@@ -76,12 +76,12 @@ PLItem::~PLItem()
/* So far signal is always true. /* So far signal is always true.
Using signal false would not call PLModel... Why ? Using signal false would not call PLModel... Why ?
*/ */
inline void PLItem::insertChild( PLItem *item, int i_pos, bool signal ) void PLItem::insertChild( PLItem *item, int i_pos, bool signal )
{ {
children.insert( i_pos, item ); children.insert( i_pos, item );
} }
inline void PLItem::appendChild( PLItem *item, bool signal ) void PLItem::appendChild( PLItem *item, bool signal )
{ {
children.insert( children.count(), item ); children.insert( children.count(), item );
} }
......
/***************************************************************************** /*****************************************************************************
* playlist_item.hpp : Item for a playlist tree * playlist_item.hpp : Item for a playlist tree
**************************************************************************** ****************************************************************************
* Copyright (C) 2006 the VideoLAN team * Copyright (C) 2006-2011 the VideoLAN team
* $Id$ * $Id$
* *
* Authors: Clément Stenac <zorglub@videolan.org> * Authors: Clément Stenac <zorglub@videolan.org>
......
/***************************************************************************** /*****************************************************************************
* playlist_model.cpp : Manage playlist model * playlist_model.cpp : Manage playlist model
**************************************************************************** ****************************************************************************
* Copyright (C) 2006-2007 the VideoLAN team * Copyright (C) 2006-2011 the VideoLAN team
* $Id$ * $Id$
* *
* Authors: Clément Stenac <zorglub@videolan.org> * Authors: Clément Stenac <zorglub@videolan.org>
......
/***************************************************************************** /*****************************************************************************
* playlist_model.hpp : Model for a playlist tree * playlist_model.hpp : Model for a playlist tree
**************************************************************************** ****************************************************************************
* Copyright (C) 2006 the VideoLAN team * Copyright (C) 2006-2011 the VideoLAN team
* $Id$ * $Id$
* *
* Authors: Clément Stenac <zorglub@videolan.org> * Authors: Clément Stenac <zorglub@videolan.org>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment