Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Q
QJsonIntrospect
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
simply-life.net
QJsonIntrospect
Commits
6739cba1
Commit
6739cba1
authored
Dec 08, 2015
by
Wouter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not initialize class-type properties using default strings
parent
c4adea0d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
introspector.cpp
lib/introspector.cpp
+2
-1
No files found.
lib/introspector.cpp
View file @
6739cba1
...
...
@@ -1019,7 +1019,8 @@ Property *Introspector::introspectProperty(const QString& id, const QVariantMap&
// Apply default value (but not for unions)
bool
isUnion
=
(
dynamic_cast
<
UnionType
*>
(
baseType
)
!=
nullptr
);
if
(
data
.
contains
(
"default"
)
&&
!
isUnion
)
{
bool
isClass
=
(
dynamic_cast
<
Class
*>
(
baseType
)
!=
nullptr
);
if
(
data
.
contains
(
"default"
)
&&
!
isUnion
&&
!
isClass
)
{
// Quote anything but numbers and ints
member
->
setDefaultValue
(
quoteValue
(
data
.
value
(
"default"
).
toString
(),
baseType
));
}
...
...
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