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
2f1adbff
Commit
2f1adbff
authored
May 18, 2014
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: rename helper for more clarity
parent
c4d99d3b
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
modules/gui/qt4/components/playlist/playlist_model.cpp
modules/gui/qt4/components/playlist/playlist_model.cpp
+1
-1
modules/gui/qt4/dialogs/open.cpp
modules/gui/qt4/dialogs/open.cpp
+1
-1
modules/gui/qt4/dialogs_provider.cpp
modules/gui/qt4/dialogs_provider.cpp
+1
-1
modules/gui/qt4/recents.cpp
modules/gui/qt4/recents.cpp
+1
-1
modules/gui/qt4/recents.hpp
modules/gui/qt4/recents.hpp
+1
-1
No files found.
modules/gui/qt4/components/playlist/playlist_model.cpp
View file @
2f1adbff
...
...
@@ -950,7 +950,7 @@ bool PLModel::action( QAction *action, const QModelIndexList &indexes )
foreach
(
const
QString
&
uri
,
a
.
uris
)
{
QStringList
options
=
a
.
options
.
split
(
" :"
);
Open
::
open
Input
(
p_intf
,
uri
,
&
options
,
false
);
Open
::
open
MRLwithOptions
(
p_intf
,
uri
,
&
options
,
false
);
}
return
true
;
...
...
modules/gui/qt4/dialogs/open.cpp
View file @
2f1adbff
...
...
@@ -381,7 +381,7 @@ void OpenDialog::enqueue( bool b_enqueue )
QStringList
optionsList
=
getOptions
().
split
(
" :"
);
/* Switch between enqueuing and starting the item */
Open
::
open
Input
(
p_intf
,
itemsMRL
[
i
],
&
optionsList
,
b_start
,
b_pl
);
Open
::
open
MRLwithOptions
(
p_intf
,
itemsMRL
[
i
],
&
optionsList
,
b_start
,
b_pl
);
}
}
...
...
modules/gui/qt4/dialogs_provider.cpp
View file @
2f1adbff
...
...
@@ -700,7 +700,7 @@ void DialogsProvider::streamingDialog( QWidget *parent,
{
options
+=
soutoption
.
split
(
" :"
);
Open
::
open
Input
(
p_intf
,
mrl
,
&
options
,
true
,
true
,
_
(
"Streaming"
)
);
Open
::
open
MRLwithOptions
(
p_intf
,
mrl
,
&
options
,
true
,
true
,
_
(
"Streaming"
)
);
}
}
...
...
modules/gui/qt4/recents.cpp
View file @
2f1adbff
...
...
@@ -182,7 +182,7 @@ void Open::openMRL( intf_thread_t *p_intf,
RecentsMRL
::
getInstance
(
p_intf
)
->
addRecent
(
mrl
);
}
int
Open
::
open
Input
(
intf_thread_t
*
p_intf
,
int
Open
::
open
MRLwithOptions
(
intf_thread_t
*
p_intf
,
const
QString
&
mrl
,
const
QStringList
*
options
,
bool
b_start
,
...
...
modules/gui/qt4/recents.hpp
View file @
2f1adbff
...
...
@@ -43,7 +43,7 @@ public:
bool
b_start
=
true
,
bool
b_playlist
=
true
);
int
static
open
Input
(
intf_thread_t
*
,
int
static
open
MRLwithOptions
(
intf_thread_t
*
,
const
QString
&
,
const
QStringList
*
options
,
bool
b_start
=
true
,
...
...
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