# HG changeset patch
# User Jan Vrany <jan.vrany@fit.cvut.cz>
# Date 1490683218 -3600
# Tue Mar 28 07:40:18 2017 +0100
# Branch jv
# Node ID 9f4f562f6ca92f6e0c80d3b2e54b210dbab8b601
# Parent a88c29229d72611ff021e91fda7bb4db0492c134
Issue #128: Fixed aspects in `...::CodeGeneratorSettingsAppl >> windowSpec`
Window spec used `generateCommentsInSetters` while setting application
defined `generateCommentsForSetters`.
https://swing.fit.cvut.cz/projects/stx-jv/ticket/128
diff -r a88c29229d72 -r 9f4f562f6ca9 AbstractSettingsApplication.st
a
|
b
|
|
3587 | 3587 | (CheckBoxSpec |
3588 | 3588 | label: 'Generate Comments in Getters' |
3589 | 3589 | name: 'GenerateCommentsInGetters' |
3590 | | activeHelpKey: generateCommentsInGetters |
| 3590 | activeHelpKey: generateCommentsForGetters |
3591 | 3591 | enableChannel: generateComments |
3592 | | model: generateCommentsInGetters |
| 3592 | model: generateCommentsForGetters |
3593 | 3593 | translateLabel: true |
3594 | 3594 | extent: (Point 607 30) |
3595 | 3595 | ) |
3596 | 3596 | (CheckBoxSpec |
3597 | 3597 | label: 'Generate Comments in Setters' |
3598 | 3598 | name: 'GenerateCommentsInSetters' |
3599 | | activeHelpKey: generateCommentsInSetters |
| 3599 | activeHelpKey: generateCommentsForSetters |
3600 | 3600 | enableChannel: generateComments |
3601 | | model: generateCommentsInSetters |
| 3601 | model: generateCommentsForSetters |
3602 | 3602 | translateLabel: true |
3603 | 3603 | extent: (Point 607 30) |
3604 | 3604 | ) |
… |
… |
|
3610 | 3610 | |
3611 | 3611 | ) |
3612 | 3612 | ) |
| 3613 | |
| 3614 | "Modified: / 03-05-2017 / 20:51:05 / Jan Vrany <jan.vrany@fit.cvut.cz>" |
3613 | 3615 | ! ! |
3614 | 3616 | |
3615 | 3617 | !AbstractSettingsApplication::CodeGeneratorSettingsAppl methodsFor:'aspects'! |