Skip to content
GitLab
Menu
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
3d4260a8
Commit
3d4260a8
authored
Mar 23, 2010
by
con
Browse files
Show error in progress bar in case of symbian deploy error.
parent
ddcb6c08
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qt-s60/s60devicerunconfiguration.cpp
View file @
3d4260a8
...
...
@@ -714,6 +714,7 @@ static inline bool renameFile(const QString &sourceName, const QString &targetNa
void
S60DeviceRunControlBase
::
makesisProcessFinished
()
{
if
(
m_makesisProcess
->
exitCode
()
!=
0
)
{
m_deployProgress
->
reportCanceled
();
error
(
this
,
tr
(
"An error occurred while creating the package."
));
stop
();
emit
finished
();
...
...
@@ -736,6 +737,7 @@ void S60DeviceRunControlBase::makesisProcessFinished()
if
(
ok
)
{
startDeployment
();
}
else
{
m_deployProgress
->
reportCanceled
();
errorMessage
=
tr
(
"Failed to create '%1': %2"
).
arg
(
m_signedPackage
,
errorMessage
);
error
(
this
,
errorMessage
);
stop
();
...
...
@@ -846,6 +848,9 @@ void S60DeviceRunControlBase::printInstallingFinished()
void
S60DeviceRunControlBase
::
printInstallFailed
(
const
QString
&
filename
,
const
QString
&
errorMessage
)
{
QTC_ASSERT
(
m_deployProgress
,
;)
if
(
m_deployProgress
)
m_deployProgress
->
reportCanceled
();
emit
addToOutputWindow
(
this
,
tr
(
"Could not install from package %1 on device: %2"
).
arg
(
filename
,
errorMessage
));
}
...
...
Write
Preview
Supports
Markdown
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