Tools__ChangeList.st
changeset 14719 7d5cc009a201
parent 14199 e065c059bc38
child 15150 940d37c7d3ac
equal deleted inserted replaced
14718:21ebe048c4a6 14719:7d5cc009a201
    99 
    99 
   100 iconMinusGrayed
   100 iconMinusGrayed
   101     ^ ToolbarIconLibrary iconMinusGray12x12
   101     ^ ToolbarIconLibrary iconMinusGray12x12
   102 
   102 
   103     "Modified: / 31-08-2011 / 10:54:40 / cg"
   103     "Modified: / 31-08-2011 / 10:54:40 / cg"
       
   104 !
       
   105 
       
   106 iconNone
       
   107     ^ nil
       
   108 
       
   109     "Created: / 05-09-2014 / 00:34:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   104 !
   110 !
   105 
   111 
   106 iconPlus
   112 iconPlus
   107     ^ ToolbarIconLibrary iconPlusBlue12x12
   113     ^ ToolbarIconLibrary iconPlusBlue12x12
   108 
   114 
   634 
   640 
   635 showConflictsOnlyHolder
   641 showConflictsOnlyHolder
   636     "return/create the 'showConflictsOnlyHolder' value holder (automatically generated)"
   642     "return/create the 'showConflictsOnlyHolder' value holder (automatically generated)"
   637 
   643 
   638     showConflictsOnlyHolder isNil ifTrue:[
   644     showConflictsOnlyHolder isNil ifTrue:[
   639         showConflictsOnlyHolder := ValueHolder with: true.
   645         showConflictsOnlyHolder := ValueHolder with: false.
   640         showConflictsOnlyHolder addDependent: self.
   646         showConflictsOnlyHolder addDependent: self.
   641     ].
   647     ].
   642     ^ showConflictsOnlyHolder
   648     ^ showConflictsOnlyHolder
       
   649 
       
   650     "Modified: / 05-09-2014 / 00:54:13 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   643 !
   651 !
   644 
   652 
   645 showConflictsOnlyHolder:something
   653 showConflictsOnlyHolder:something
   646     "set the 'showConflictsOnlyHolder' value holder (automatically generated)"
   654     "set the 'showConflictsOnlyHolder' value holder (automatically generated)"
   647 
   655 
   663 
   671 
   664 showDefinitionsOnlyHolder
   672 showDefinitionsOnlyHolder
   665     "return/create the 'showDefinitionsOnlyHolder' value holder (automatically generated)"
   673     "return/create the 'showDefinitionsOnlyHolder' value holder (automatically generated)"
   666 
   674 
   667     showDefinitionsOnlyHolder isNil ifTrue:[
   675     showDefinitionsOnlyHolder isNil ifTrue:[
   668         showDefinitionsOnlyHolder := ValueHolder with: true.
   676         showDefinitionsOnlyHolder := ValueHolder with: false.
   669         showDefinitionsOnlyHolder addDependent: self.
   677         showDefinitionsOnlyHolder addDependent: self.
   670     ].
   678     ].
   671     ^ showDefinitionsOnlyHolder
   679     ^ showDefinitionsOnlyHolder
       
   680 
       
   681     "Modified: / 05-09-2014 / 00:52:55 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   672 !
   682 !
   673 
   683 
   674 showDefinitionsOnlyHolder:something
   684 showDefinitionsOnlyHolder:something
   675     "set the 'showDefinitionsOnlyHolder' value holder (automatically generated)"
   685     "set the 'showDefinitionsOnlyHolder' value holder (automatically generated)"
   676 
   686 
  1595 ! !
  1605 ! !
  1596 
  1606 
  1597 !ChangeList class methodsFor:'documentation'!
  1607 !ChangeList class methodsFor:'documentation'!
  1598 
  1608 
  1599 version
  1609 version
  1600     ^ '$Header: /cvs/stx/stx/libtool/Tools__ChangeList.st,v 1.34 2014-04-11 08:08:29 vrany Exp $'
  1610     ^ '$Header: /cvs/stx/stx/libtool/Tools__ChangeList.st,v 1.35 2014-09-05 10:31:05 vrany Exp $'
  1601 !
  1611 !
  1602 
  1612 
  1603 version_CVS
  1613 version_CVS
  1604     ^ '$Header: /cvs/stx/stx/libtool/Tools__ChangeList.st,v 1.34 2014-04-11 08:08:29 vrany Exp $'
  1614     ^ '$Header: /cvs/stx/stx/libtool/Tools__ChangeList.st,v 1.35 2014-09-05 10:31:05 vrany Exp $'
  1605 !
  1615 !
  1606 
  1616 
  1607 version_SVN
  1617 version_SVN
  1608     ^ '$Id: Tools__ChangeList.st,v 1.34 2014-04-11 08:08:29 vrany Exp $'
  1618     ^ '$Id: Tools__ChangeList.st,v 1.35 2014-09-05 10:31:05 vrany Exp $'
  1609 ! !
  1619 ! !
  1610 
  1620