Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
6ea7535a
Commit
6ea7535a
authored
Sep 02, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: remove dead code/signals
parent
0fb61d20
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
20 deletions
+0
-20
modules/gui/qt4/components/playlist/panels.hpp
modules/gui/qt4/components/playlist/panels.hpp
+0
-2
modules/gui/qt4/components/playlist/playlist.cpp
modules/gui/qt4/components/playlist/playlist.cpp
+0
-5
modules/gui/qt4/components/playlist/playlist_model.hpp
modules/gui/qt4/components/playlist/playlist_model.hpp
+0
-1
modules/gui/qt4/components/playlist/selector.hpp
modules/gui/qt4/components/playlist/selector.hpp
+0
-2
modules/gui/qt4/components/playlist/standardpanel.cpp
modules/gui/qt4/components/playlist/standardpanel.cpp
+0
-10
No files found.
modules/gui/qt4/components/playlist/panels.hpp
View file @
6ea7535a
...
...
@@ -57,7 +57,6 @@ protected:
intf_thread_t
*
p_intf
;
QFrame
*
parent
;
public
slots
:
virtual
void
setRoot
(
int
)
=
0
;
virtual
void
setRoot
(
playlist_item_t
*
)
=
0
;
};
...
...
@@ -81,7 +80,6 @@ private:
QSignalMapper
*
selectColumnsSigMapper
;
public
slots
:
void
removeItem
(
int
);
virtual
void
setRoot
(
int
);
virtual
void
setRoot
(
playlist_item_t
*
);
private
slots
:
void
deleteSelection
();
...
...
modules/gui/qt4/components/playlist/playlist.cpp
View file @
6ea7535a
...
...
@@ -86,11 +86,6 @@ PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i ) : p_intf ( _p_i )
connect
(
selector
,
SIGNAL
(
activated
(
playlist_item_t
*
)
),
this
,
SIGNAL
(
rootChanged
(
playlist_item_t
*
)
)
);
/* Forward removal requests from the selector to the main panel */
/* CONNECT( qobject_cast<PLSelector *>( selector )->model,
shouldRemove( int ),
qobject_cast<StandardPLPanel *>( rightPanel ), removeItem( int ) ); */
emit
rootChanged
(
p_root
);
/* Add the two sides of the QSplitter */
...
...
modules/gui/qt4/components/playlist/playlist_model.hpp
View file @
6ea7535a
...
...
@@ -177,7 +177,6 @@ private:
int
i_cached_input_id
;
signals:
void
shouldRemove
(
int
);
void
currentChanged
(
const
QModelIndex
&
);
public
slots
:
...
...
modules/gui/qt4/components/playlist/selector.hpp
View file @
6ea7535a
...
...
@@ -53,9 +53,7 @@ private:
private
slots
:
void
setSource
(
QTreeWidgetItem
*
item
);
signals:
void
activated
(
int
);
void
activated
(
playlist_item_t
*
);
void
shouldRemove
(
int
);
};
#endif
modules/gui/qt4/components/playlist/standardpanel.cpp
View file @
6ea7535a
...
...
@@ -302,16 +302,6 @@ void StandardPLPanel::doPopup( QModelIndex index, QPoint point )
/* Set the root of the new Playlist */
/* This activated by the selector selection */
void
StandardPLPanel
::
setRoot
(
int
i_root_id
)
{
QPL_LOCK
;
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
THEPL
,
i_root_id
);
assert
(
p_item
);
p_item
=
playlist_GetPreferredNode
(
THEPL
,
p_item
);
setRoot
(
p_item
);
QPL_UNLOCK
;
}
void
StandardPLPanel
::
setRoot
(
playlist_item_t
*
p_item
)
{
QPL_LOCK
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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