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
af3
AF3
Commits
5c406f8e
Commit
5c406f8e
authored
Dec 11, 2017
by
Vivek Nigam
Browse files
Missing check led to an attempt to construct a disposed GUI.
refs 3230
parent
b2a9d568
Changes
2
Hide whitespace changes
Inline
Side-by-side
org.fortiss.af3.specification.ui/trunk/src/org/fortiss/af3/specification/ui/editor/.ratings
View file @
5c406f8e
...
...
@@ -7,4 +7,4 @@ RequirementVVDashboard.java b99428a26586b3af021abe7bc953dd9b09fc8d47 GREEN
RequirementVVDashboardBinding.java 275b00aba4e93440418ccaeea3041e0390dd0c01 GREEN
StateAutomatonVVDashboard.java ba094188ba8677e03884cbf81e6904da33835b47 GREEN
StateAutomatonVVDashboardEditorBinding.java a1996b84336eb5dcf04ec52161a8955a5c03196c GREEN
VVDashboardBase.java b
599ac00a8d78931fbd34a3479503f956e24ac44 GREEN
VVDashboardBase.java b
ef17afe2cea9ff7d11ebe1cc5bddb6642bf920c YELLOW
org.fortiss.af3.specification.ui/trunk/src/org/fortiss/af3/specification/ui/editor/VVDashboardBase.java
View file @
5c406f8e
...
...
@@ -184,7 +184,7 @@ public abstract class VVDashboardBase<T extends EObject> extends FormsEditorBase
* according to the status of <code>c</code>.
*/
private
void
prepareStatus
(
Label
status
,
Button
b
,
Composite
globalComp
,
ConstraintInstance
c
)
{
if
(
c
!=
null
)
{
if
(
c
!=
null
&&
globalComp
.
getDisplay
()
!=
null
)
{
globalComp
.
setVisible
(
true
);
status
.
setText
(
ConstraintsUIUtils
.
getText
(
c
));
status
.
setForeground
(
ConstraintsUIUtils
.
getColor
(
c
));
...
...
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