TextView.st
changeset 4748 3f24bdf8a355
parent 4702 02d7770b3206
child 4755 d47ae92cc09f
equal deleted inserted replaced
4747:3e369a9683d8 4748:3f24bdf8a355
  1894 initialize
  1894 initialize
  1895     super initialize.
  1895     super initialize.
  1896     self initializeSaveAction.
  1896     self initializeSaveAction.
  1897     contentsWasSaved := false.
  1897     contentsWasSaved := false.
  1898     dragIsActive     := false.
  1898     dragIsActive     := false.
       
  1899     lastSearchWasMatch := lastSearchIgnoredCase := lastSearchWasVariableSearch := false.
  1899 
  1900 
  1900     parenthesisSpecification isNil ifTrue:[
  1901     parenthesisSpecification isNil ifTrue:[
  1901 	parenthesisSpecification := DefaultParenthesisSpecification.
  1902         parenthesisSpecification := DefaultParenthesisSpecification.
  1902     ].
  1903     ].
  1903 
  1904 
  1904     "I handle menus myself"
  1905     "I handle menus myself"
  1905     menuHolder := menuPerformer := self.
  1906     menuHolder := menuPerformer := self.
  1906 
  1907 
  4843 ! !
  4844 ! !
  4844 
  4845 
  4845 !TextView class methodsFor:'documentation'!
  4846 !TextView class methodsFor:'documentation'!
  4846 
  4847 
  4847 version
  4848 version
  4848     ^ '$Header: /cvs/stx/stx/libwidg/TextView.st,v 1.360 2013-08-30 22:24:36 cg Exp $'
  4849     ^ '$Header: /cvs/stx/stx/libwidg/TextView.st,v 1.361 2013-09-06 12:24:32 cg Exp $'
  4849 !
  4850 !
  4850 
  4851 
  4851 version_CVS
  4852 version_CVS
  4852     ^ '$Header: /cvs/stx/stx/libwidg/TextView.st,v 1.360 2013-08-30 22:24:36 cg Exp $'
  4853     ^ '$Header: /cvs/stx/stx/libwidg/TextView.st,v 1.361 2013-09-06 12:24:32 cg Exp $'
  4853 ! !
  4854 ! !
  4854 
  4855 
  4855 
  4856 
  4856 TextView initialize!
  4857 TextView initialize!