Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Multimedia
Kdenlive
Commits
5cc84bdc
Commit
5cc84bdc
authored
Feb 09, 2020
by
Yuri Chornoivan
Browse files
Fix minor typos
parent
fb82eabe
Pipeline
#14730
passed with stage
in 16 minutes and 53 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/utils/otioconvertions.cpp
View file @
5cc84bdc
...
...
@@ -117,22 +117,22 @@ void OtioConvertions::slotProjectExported(int exitCode, QProcess::ExitStatus exi
m_otioProcess
.
disconnect
();
m_otioTempFile
.
remove
();
if
(
exitStatus
!=
QProcess
::
NormalExit
||
exitCode
!=
0
)
{
pCore
->
displayMessage
(
i18n
(
"Project conver
t
ion failed"
),
ErrorMessage
);
pCore
->
displayMessage
(
i18n
(
"Project conver
s
ion failed"
),
ErrorMessage
);
qWarning
()
<<
exitCode
<<
exitStatus
<<
QString
(
m_otioProcess
.
readAllStandardError
());
return
;
}
pCore
->
displayMessage
(
i18n
(
"Project conver
t
ion complete"
),
InformationMessage
);
pCore
->
displayMessage
(
i18n
(
"Project conver
s
ion complete"
),
InformationMessage
);
}
void
OtioConvertions
::
slotProjectImported
(
int
exitCode
,
QProcess
::
ExitStatus
exitStatus
)
{
m_otioProcess
.
disconnect
();
if
(
exitStatus
!=
QProcess
::
NormalExit
||
exitCode
!=
0
||
!
QFile
::
exists
(
m_importedFile
))
{
pCore
->
displayMessage
(
i18n
(
"Project conver
t
ion failed"
),
ErrorMessage
);
pCore
->
displayMessage
(
i18n
(
"Project conver
s
ion failed"
),
ErrorMessage
);
qWarning
()
<<
exitCode
<<
exitStatus
<<
QString
(
m_otioProcess
.
readAllStandardError
());
return
;
}
pCore
->
displayMessage
(
i18n
(
"Project conver
t
ion complete"
),
InformationMessage
);
pCore
->
displayMessage
(
i18n
(
"Project conver
s
ion complete"
),
InformationMessage
);
// Verify current project can be closed
if
(
pCore
->
currentDoc
()
->
isModified
()
&&
KMessageBox
::
warningContinueCancel
(
pCore
->
window
(),
i18n
(
...
...
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