Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
0f7b7464
Commit
0f7b7464
authored
Mar 19, 2010
by
dt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix debugging helper logic
parent
c8b01876
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
src/plugins/qt4projectmanager/qtversionmanager.cpp
src/plugins/qt4projectmanager/qtversionmanager.cpp
+3
-4
No files found.
src/plugins/qt4projectmanager/qtversionmanager.cpp
View file @
0f7b7464
...
...
@@ -953,6 +953,7 @@ void QtVersion::updateVersionInfo() const
m_notInstalled
=
false
;
m_hasExamples
=
false
;
m_hasDocumentation
=
false
;
m_hasDebuggingHelper
=
false
;
QFileInfo
qmake
(
qmakeCommand
());
if
(
qmake
.
exists
()
&&
qmake
.
isExecutable
())
{
...
...
@@ -994,10 +995,8 @@ void QtVersion::updateVersionInfo() const
QString
qtInstallData
=
m_versionInfo
.
value
(
"QT_INSTALL_DATA"
);
m_versionInfo
.
insert
(
"QMAKE_MKSPECS"
,
QDir
::
cleanPath
(
qtInstallData
+
"/mkspecs"
));
if
(
qtInstallData
.
isEmpty
())
m_hasDebuggingHelper
=
false
;
else
m_hasDebuggingHelper
=
DebuggingHelperLibrary
::
debuggingHelperLibraryByInstallData
(
qtInstallData
).
isEmpty
();
if
(
!
qtInstallData
.
isEmpty
())
m_hasDebuggingHelper
=
!
DebuggingHelperLibrary
::
debuggingHelperLibraryByInstallData
(
qtInstallData
).
isEmpty
();
}
// Now check for a qt that is configured with a prefix but not installed
...
...
Write
Preview
Markdown
is supported
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