Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Kdenlive
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
258
Issues
258
List
Boards
Labels
Service Desk
Milestones
Merge Requests
15
Merge Requests
15
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
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
Multimedia
Kdenlive
Commits
5ca25610
Commit
5ca25610
authored
May 01, 2020
by
Jean-Baptiste Mardelle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some warnings
parent
f6d6a03f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/jobs/filterclipjob.cpp
src/jobs/filterclipjob.cpp
+1
-1
src/jobs/loadjob.cpp
src/jobs/loadjob.cpp
+1
-1
No files found.
src/jobs/filterclipjob.cpp
View file @
5ca25610
...
...
@@ -76,7 +76,7 @@ const QString FilterClipJob::getDescription() const
void
FilterClipJob
::
configureConsumer
()
{
m_consumer
=
std
::
make_unique
<
Mlt
::
Consumer
>
(
*
m_profile
.
get
(),
"null"
);
for
(
const
QString
param
:
m_consumerArgs
)
{
for
(
const
QString
&
param
:
m_consumerArgs
)
{
if
(
param
.
contains
(
QLatin1Char
(
'='
)))
{
m_consumer
->
set
(
param
.
section
(
QLatin1Char
(
'='
),
0
,
0
).
toUtf8
().
constData
(),
param
.
section
(
QLatin1Char
(
'='
),
1
).
toInt
());
}
...
...
src/jobs/loadjob.cpp
View file @
5ca25610
...
...
@@ -578,7 +578,7 @@ void LoadJob::processMultiStream()
mainLayout
->
addWidget
(
mainWidget
);
QPushButton
*
okButton
=
buttonBox
->
button
(
QDialogButtonBox
::
Ok
);
okButton
->
setDefault
(
true
);
okButton
->
setShortcut
(
Q
t
::
CTRL
|
Qt
::
Key_Return
);
okButton
->
setShortcut
(
Q
KeySequence
(
Qt
::
CTRL
+
Qt
::
Key_Return
)
);
dialog
->
connect
(
buttonBox
,
&
QDialogButtonBox
::
accepted
,
dialog
.
data
(),
&
QDialog
::
accept
);
dialog
->
connect
(
buttonBox
,
&
QDialogButtonBox
::
rejected
,
dialog
.
data
(),
&
QDialog
::
reject
);
okButton
->
setText
(
i18n
(
"Import selected clips"
));
...
...
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