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
8b2c1501
Commit
8b2c1501
authored
Oct 28, 2009
by
dt
Browse files
Fix crash with no toolchain and clicking on build debugging helper
parent
b47d41c2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qtversionmanager.cpp
View file @
8b2c1501
...
...
@@ -1370,7 +1370,10 @@ QString QtVersion::buildDebuggingHelperLibrary()
addToEnvironment
(
env
);
// TODO: the debugging helper doesn't comply to actual tool chain yet
ProjectExplorer
::
ToolChain
*
tc
=
createToolChain
(
defaultToolchainType
());
if
(
!
tc
)
return
QApplication
::
tr
(
"The Qt Version has no toolchain."
);
tc
->
addToEnvironment
(
env
);
QString
output
;
QString
directory
=
DebuggingHelperLibrary
::
copyDebuggingHelperLibrary
(
qtInstallData
,
&
output
);
...
...
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