Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
9a68967d
Commit
9a68967d
authored
May 03, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt, selector: Signal renaming to avoid Qt confusion
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
b235e65f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
modules/gui/qt4/components/playlist/playlist.cpp
modules/gui/qt4/components/playlist/playlist.cpp
+1
-1
modules/gui/qt4/components/playlist/selector.cpp
modules/gui/qt4/components/playlist/selector.cpp
+2
-2
modules/gui/qt4/components/playlist/selector.hpp
modules/gui/qt4/components/playlist/selector.hpp
+1
-1
No files found.
modules/gui/qt4/components/playlist/playlist.cpp
View file @
9a68967d
...
...
@@ -144,7 +144,7 @@ PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i, QWidget *_par )
layout
->
setColumnStretch
(
3
,
3
);
/* Connect the activation of the selector to a redefining of the PL */
DCONNECT
(
selector
,
a
ctivated
(
playlist_item_t
*
,
bool
),
DCONNECT
(
selector
,
categoryA
ctivated
(
playlist_item_t
*
,
bool
),
mainView
,
setRoot
(
playlist_item_t
*
,
bool
)
);
mainView
->
setRoot
(
p_root
,
false
);
...
...
modules/gui/qt4/components/playlist/selector.cpp
View file @
9a68967d
...
...
@@ -276,7 +276,7 @@ void PLSelector::setSource( QTreeWidgetItem *item )
}
else
if
(
i_type
==
SQL_ML
)
{
emit
a
ctivated
(
NULL
,
true
);
emit
categoryA
ctivated
(
NULL
,
true
);
return
;
}
...
...
@@ -311,7 +311,7 @@ void PLSelector::setSource( QTreeWidgetItem *item )
/* */
if
(
pl_item
)
emit
a
ctivated
(
pl_item
,
false
);
emit
categoryA
ctivated
(
pl_item
,
false
);
}
PLSelItem
*
PLSelector
::
addItem
(
...
...
modules/gui/qt4/components/playlist/selector.hpp
View file @
9a68967d
...
...
@@ -145,7 +145,7 @@ private slots:
void
podcastRemove
(
PLSelItem
*
);
signals:
void
a
ctivated
(
playlist_item_t
*
,
bool
);
void
categoryA
ctivated
(
playlist_item_t
*
,
bool
);
};
#endif
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