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
7708d43f
Commit
7708d43f
authored
Feb 19, 2009
by
hjk
Browse files
Fixes: compile creator with QT_NO_CAST_FROM_BYTEARRAY
parent
a8300b3f
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/debugger.pro
View file @
7708d43f
...
...
@@ -10,9 +10,6 @@ include(../../plugins/texteditor/texteditor.pri)
include
(..
/../
plugins
/
cpptools
/
cpptools
.
pri
)
include
(..
/../
libs
/
cplusplus
/
cplusplus
.
pri
)
#
DEFINES
+=
QT_NO_CAST_FROM_ASCII
DEFINES
+=
QT_NO_CAST_TO_ASCII
QT
+=
gui
network
script
HEADERS
+=
attachexternaldialog
.
h
\
...
...
src/qworkbench.pri
View file @
7708d43f
...
...
@@ -40,6 +40,9 @@ DEPENDPATH += \
LIBS += -L$$IDE_LIBRARY_PATH
# DEFINES += QT_NO_CAST_FROM_ASCII
DEFINES += QT_NO_CAST_TO_ASCII
unix {
debug:OBJECTS_DIR = $${OUT_PWD}/.obj/debug-shared
release:OBJECTS_DIR = $${OUT_PWD}/.obj/release-shared
...
...
src/shared/cpaster/cgi.cpp
View file @
7708d43f
...
...
@@ -112,7 +112,12 @@ QString CGI::decodeURL(const QString &urlText)
dec
.
append
(
' '
);
break
;
default:
dec
.
append
(
*
it
);
if
(
ch
<
256
)
{
dec
.
append
(
ch
);
}
else
{
// should not happen with proper URLs but stay on the safe side
dec
.
append
(
QString
(
*
it
).
toUtf8
());
}
break
;
}
++
it
;
...
...
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