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
Marco Bubke
flatpak-qt-creator
Commits
1ccf39f8
Commit
1ccf39f8
authored
Jul 23, 2009
by
con
Browse files
Actually get the exit code from package creation and signing
parent
26c2afe6
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qt-s60/s60devicerunconfiguration.cpp
View file @
1ccf39f8
...
...
@@ -499,7 +499,7 @@ void S60DeviceRunControl::makesisProcessFailed()
void
S60DeviceRunControl
::
makesisProcessFinished
()
{
if
(
m_makesis
->
exit
Status
()
!=
0
)
{
if
(
m_makesis
->
exit
Code
()
!=
0
)
{
error
(
this
,
tr
(
"An error occurred while creating the package."
));
emit
finished
();
return
;
...
...
@@ -527,7 +527,7 @@ void S60DeviceRunControl::signsisProcessFailed()
void
S60DeviceRunControl
::
signsisProcessFinished
()
{
if
(
m_signsis
->
exit
Status
()
!=
0
)
{
if
(
m_signsis
->
exit
Code
()
!=
0
)
{
error
(
this
,
tr
(
"An error occurred while creating the package."
));
emit
finished
();
return
;
...
...
@@ -547,7 +547,7 @@ void S60DeviceRunControl::installProcessFailed()
void
S60DeviceRunControl
::
installProcessFinished
()
{
if
(
m_install
->
exit
Status
()
!=
0
)
{
if
(
m_install
->
exit
Code
()
!=
0
)
{
error
(
this
,
tr
(
"An error occurred while creating the package."
));
}
emit
addToOutputWindow
(
this
,
tr
(
"Finished."
));
...
...
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