CVSSourceCodeManager.st
changeset 4196 c1d94ff7867e
parent 4184 9827571f14a0
child 4207 9eccfc1cbc8d
child 4220 5f58a2fda23f
equal deleted inserted replaced
4195:42095728a4e9 4196:c1d94ff7867e
  5160                             Dialog warn:('Cannot tag unloaded class: %1.' bindWith:cls name).
  5160                             Dialog warn:('Cannot tag unloaded class: %1.' bindWith:cls name).
  5161                             alreadyWarned := alreadyWarned + 1.
  5161                             alreadyWarned := alreadyWarned + 1.
  5162                         ] ifFalse:[
  5162                         ] ifFalse:[
  5163                             alreadyWarned == 1 ifTrue:[
  5163                             alreadyWarned == 1 ifTrue:[
  5164                                 answer := Dialog confirmWithCancel:('Cannot tag unloaded class: %1.\\Suppress further warnings?' withCRs bindWith:cls name).
  5164                                 answer := Dialog confirmWithCancel:('Cannot tag unloaded class: %1.\\Suppress further warnings?' withCRs bindWith:cls name).
  5165                                 answer == nil ifTrue:[^ self].
  5165                                 answer isNil ifTrue:[^ self].
  5166                                 answer == true ifTrue:[
  5166                                 answer == true ifTrue:[
  5167                                     alreadyWarned := alreadyWarned + 1.
  5167                                     alreadyWarned := alreadyWarned + 1.
  5168                                 ].
  5168                                 ].
  5169                             ]
  5169                             ]
  5170                         ].
  5170                         ].