Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
ef92feef
Commit
ef92feef
authored
Apr 28, 2011
by
Jean-Baptiste Kempf
Browse files
Qt, playlist: fix copyright and small change
parent
a3b7bce4
Changes
4
Hide whitespace changes
Inline
Side-by-side
modules/gui/qt4/components/playlist/playlist_item.cpp
View file @
ef92feef
/*****************************************************************************
* playlist_item.cpp : Manage playlist item
****************************************************************************
* Copyright © 2006-20
08
the VideoLAN team
* Copyright © 2006-20
11
the VideoLAN team
* $Id$
*
* Authors: Clément Stenac <zorglub@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
);
}
...
...
modules/gui/qt4/components/playlist/playlist_item.hpp
View file @
ef92feef
/*****************************************************************************
* 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@videolan.org>
...
...
modules/gui/qt4/components/playlist/playlist_model.cpp
View file @
ef92feef
/*****************************************************************************
* playlist_model.cpp : Manage playlist model
****************************************************************************
* Copyright (C) 2006-20
07
the VideoLAN team
* Copyright (C) 2006-20
11
the VideoLAN team
* $Id$
*
* Authors: Clément Stenac <zorglub@videolan.org>
...
...
modules/gui/qt4/components/playlist/playlist_model.hpp
View file @
ef92feef
/*****************************************************************************
* 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@videolan.org>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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