Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
qt-creator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tobias Hunger
qt-creator
Commits
72ea71aa
Commit
72ea71aa
authored
15 years ago
by
Erik Verbruggen
Browse files
Options
Downloads
Patches
Plain Diff
Fixed string escaping when writing QML properties.
parent
b59442e0
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/plugins/qmldesigner/core/model/qmltextgenerator.cpp
+14
-1
14 additions, 1 deletion
src/plugins/qmldesigner/core/model/qmltextgenerator.cpp
src/plugins/qmldesigner/core/model/qmltextgenerator.h
+2
-0
2 additions, 0 deletions
src/plugins/qmldesigner/core/model/qmltextgenerator.h
with
16 additions
and
1 deletion
src/plugins/qmldesigner/core/model/qmltextgenerator.cpp
+
14
−
1
View file @
72ea71aa
...
@@ -97,7 +97,7 @@ QString QmlTextGenerator::toQml(const AbstractProperty &property, int indentDept
...
@@ -97,7 +97,7 @@ QString QmlTextGenerator::toQml(const AbstractProperty &property, int indentDept
return
stringValue
;
return
stringValue
;
default:
default:
return
QString
(
QLatin1String
(
"
\"
%1
\"
"
)).
arg
(
stringValue
);
return
QString
(
QLatin1String
(
"
\"
%1
\"
"
)).
arg
(
escape
(
stringValue
)
)
;
}
}
}
else
{
}
else
{
Q_ASSERT
(
"Unknown property type"
);
Q_ASSERT
(
"Unknown property type"
);
...
@@ -176,3 +176,16 @@ QString QmlTextGenerator::propertyToQml(const AbstractProperty &property, int in
...
@@ -176,3 +176,16 @@ QString QmlTextGenerator::propertyToQml(const AbstractProperty &property, int in
return
result
;
return
result
;
}
}
QString
QmlTextGenerator
::
escape
(
const
QString
&
value
)
{
QString
result
=
value
;
result
.
replace
(
QLatin1String
(
"
\\
"
),
QLatin1String
(
"
\\\\
"
));
result
.
replace
(
QLatin1String
(
"
\"
"
),
QLatin1String
(
"
\\\"
"
));
result
.
replace
(
QLatin1String
(
"
\t
"
),
QLatin1String
(
"
\\\t
"
));
result
.
replace
(
QLatin1String
(
"
\r
"
),
QLatin1String
(
"
\\\r
"
));
result
.
replace
(
QLatin1String
(
"
\n
"
),
QLatin1String
(
"
\\\n
"
));
return
result
;
}
This diff is collapsed.
Click to expand it.
src/plugins/qmldesigner/core/model/qmltextgenerator.h
+
2
−
0
View file @
72ea71aa
...
@@ -56,6 +56,8 @@ private:
...
@@ -56,6 +56,8 @@ private:
QString
propertiesToQml
(
const
ModelNode
&
node
,
int
indentDepth
)
const
;
QString
propertiesToQml
(
const
ModelNode
&
node
,
int
indentDepth
)
const
;
QString
propertyToQml
(
const
AbstractProperty
&
property
,
int
indentDepth
)
const
;
QString
propertyToQml
(
const
AbstractProperty
&
property
,
int
indentDepth
)
const
;
static
QString
escape
(
const
QString
&
value
);
private
:
private
:
QStringList
m_propertyOrder
;
QStringList
m_propertyOrder
;
int
m_indentDepth
;
int
m_indentDepth
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment