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
Toggle navigation
Open sidebar
SDK
Umbrello
Commits
61e49b70
Commit
61e49b70
authored
Dec 29, 2014
by
Ralf Habacker
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix 'No import of entities with empty check constraints'.
BUG:342317 FIXED-IN:2.15.1 (KDE 14.12.1)
parent
f215461b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
umbrello/checkconstraint.cpp
umbrello/checkconstraint.cpp
+3
-3
No files found.
umbrello/checkconstraint.cpp
View file @
61e49b70
...
@@ -142,9 +142,9 @@ bool UMLCheckConstraint::load(QDomElement & element)
...
@@ -142,9 +142,9 @@ bool UMLCheckConstraint::load(QDomElement & element)
QDomText
checkConstraintText
=
node
.
toText
();
QDomText
checkConstraintText
=
node
.
toText
();
if
(
checkConstraintText
.
isNull
())
if
(
checkConstraintText
.
isNull
())
return
false
;
m_CheckCondition
=
QString
()
;
else
m_CheckCondition
=
checkConstraintText
.
data
();
m_CheckCondition
=
checkConstraintText
.
data
();
return
true
;
return
true
;
}
}
...
...
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