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
Tobias Hunger
qt-creator
Commits
b6ee94fb
Commit
b6ee94fb
authored
Jun 07, 2010
by
Robert Loehning
Browse files
Symbian/Trk: Don't try to download a file without respective flag set.
Task-number: QTCREATORBUG-1567 Reviewed-by: Friedemann Kleint
parent
723754d2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/shared/symbianutils/launcher.cpp
View file @
b6ee94fb
...
...
@@ -446,7 +446,10 @@ void Launcher::handleResult(const TrkResult &result)
if
(
itemType
==
0
// process
&&
result
.
data
.
size
()
>=
10
&&
d
->
m_session
.
pid
==
extractInt
(
result
.
data
.
data
()
+
6
))
{
copyFileFromRemote
();
if
(
d
->
m_startupActions
&
ActionDownload
)
copyFileFromRemote
();
else
disconnectTrk
();
}
break
;
}
...
...
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