[vlc-commits] Qt, playlist: fix copyright and small change

Jean-Baptiste Kempf git at videolan.org
Thu Apr 28 23:57:59 CEST 2011


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu Apr 28 23:57:38 2011 +0200| [ef92feef23c68e33498557391306240176285fbf] | committer: Jean-Baptiste Kempf

Qt, playlist: fix copyright and small change

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ef92feef23c68e33498557391306240176285fbf
---

 .../gui/qt4/components/playlist/playlist_item.cpp  |    6 +++---
 .../gui/qt4/components/playlist/playlist_item.hpp  |    2 +-
 .../gui/qt4/components/playlist/playlist_model.cpp |    2 +-
 .../gui/qt4/components/playlist/playlist_model.hpp |    2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/modules/gui/qt4/components/playlist/playlist_item.cpp b/modules/gui/qt4/components/playlist/playlist_item.cpp
index fe1e3d4..fe8ce9f 100644
--- a/modules/gui/qt4/components/playlist/playlist_item.cpp
+++ b/modules/gui/qt4/components/playlist/playlist_item.cpp
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * playlist_item.cpp : Manage playlist item
  ****************************************************************************
- * Copyright © 2006-2008 the VideoLAN team
+ * Copyright © 2006-2011 the VideoLAN team
  * $Id$
  *
  * Authors: Clément Stenac <zorglub at videolan.org>
@@ -76,12 +76,12 @@ PLItem::~PLItem()
 /* So far signal is always true.
    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 );
 }
 
-inline void PLItem::appendChild( PLItem *item, bool signal )
+void PLItem::appendChild( PLItem *item, bool signal )
 {
     children.insert( children.count(), item );
 }
diff --git a/modules/gui/qt4/components/playlist/playlist_item.hpp b/modules/gui/qt4/components/playlist/playlist_item.hpp
index e8fa9b2..bbde855 100644
--- a/modules/gui/qt4/components/playlist/playlist_item.hpp
+++ b/modules/gui/qt4/components/playlist/playlist_item.hpp
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * playlist_item.hpp : Item for a playlist tree
  ****************************************************************************
- * Copyright (C) 2006 the VideoLAN team
+ * Copyright (C) 2006-2011 the VideoLAN team
  * $Id$
  *
  * Authors: Clément Stenac <zorglub at videolan.org>
diff --git a/modules/gui/qt4/components/playlist/playlist_model.cpp b/modules/gui/qt4/components/playlist/playlist_model.cpp
index c0eca67..51ded19 100644
--- a/modules/gui/qt4/components/playlist/playlist_model.cpp
+++ b/modules/gui/qt4/components/playlist/playlist_model.cpp
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * playlist_model.cpp : Manage playlist model
  ****************************************************************************
- * Copyright (C) 2006-2007 the VideoLAN team
+ * Copyright (C) 2006-2011 the VideoLAN team
  * $Id$
  *
  * Authors: Clément Stenac <zorglub at videolan.org>
diff --git a/modules/gui/qt4/components/playlist/playlist_model.hpp b/modules/gui/qt4/components/playlist/playlist_model.hpp
index e130590..db3a29b 100644
--- a/modules/gui/qt4/components/playlist/playlist_model.hpp
+++ b/modules/gui/qt4/components/playlist/playlist_model.hpp
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * playlist_model.hpp : Model for a playlist tree
  ****************************************************************************
- * Copyright (C) 2006 the VideoLAN team
+ * Copyright (C) 2006-2011 the VideoLAN team
  * $Id$
  *
  * Authors: Clément Stenac <zorglub at videolan.org>



More information about the vlc-commits mailing list