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
da078d30
Commit
da078d30
authored
May 20, 2010
by
Friedemann Kleint
Browse files
Compiler warning: Do not return false for return type QString.
parent
0c31b67e
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qt-s60/s60devices.cpp
View file @
da078d30
...
...
@@ -403,7 +403,7 @@ static QString detect_SDK_installedQt(const QString &epocRoot)
const
QString
coreLibDllFileName
=
epocRoot
+
QLatin1String
(
"/epoc32/release/winscw/udeb/QtCore.dll"
);
QFile
coreLibDllFile
(
coreLibDllFileName
);
if
(
!
coreLibDllFile
.
exists
()
||
!
coreLibDllFile
.
open
(
QIODevice
::
ReadOnly
))
return
false
;
return
QString
()
;
// Do not normalize these backslashes since they are in ARM binaries:
const
QByteArray
indicator
(
"
\\
src
\\
corelib
\\
kernel
\\
qobject.h"
);
...
...
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