Ticket #128: libtool_fix_1_of_1_rev_cef8f4715d4d_Issue__128__Fixed_aspects_in_______CodeGeneratorSettingsAppl____windowSpec_.patch

File libtool_fix_1_of_1_rev_cef8f4715d4d_Issue__128__Fixed_aspects_in_______CodeGeneratorSettingsAppl____windowSpec_.patch, 1.7 KB (added by jan vrany, 7 years ago)
  • AbstractSettingsApplication.st

    # 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 cef8f4715d4dd795ae911e1872177901fa544c42
    # 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 cef8f4715d4d AbstractSettingsApplication.st
    a b  
    35873587                (CheckBoxSpec
    35883588                   label: 'Generate Comments in Getters'
    35893589                   name: 'GenerateCommentsInGetters'
    3590                    activeHelpKey: generateCommentsInGetters
     3590                   activeHelpKey: generateCommentsForGetters
    35913591                   enableChannel: generateComments
    35923592                   model: generateCommentsInGetters
    35933593                   translateLabel: true
     
    35963596                (CheckBoxSpec
    35973597                   label: 'Generate Comments in Setters'
    35983598                   name: 'GenerateCommentsInSetters'
    3599                    activeHelpKey: generateCommentsInSetters
     3599                   activeHelpKey: generateCommentsForSetters
    36003600                   enableChannel: generateComments
    36013601                   model: generateCommentsInSetters
    36023602                   translateLabel: true
     
    36103610
    36113611       )
    36123612     )
     3613
     3614    "Modified: / 28-03-2017 / 07:35:55 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    36133615! !
    36143616
    36153617!AbstractSettingsApplication::CodeGeneratorSettingsAppl methodsFor:'aspects'!