CVSSourceCodeManager.st
branchjv
changeset 4207 9eccfc1cbc8d
parent 4194 6fcb7a598b44
parent 4196 c1d94ff7867e
child 4330 998eb03f0736
equal deleted inserted replaced
4199:89ebbba27db6 4207:9eccfc1cbc8d
  5169                             Dialog warn:('Cannot tag unloaded class: %1.' bindWith:cls name).
  5169                             Dialog warn:('Cannot tag unloaded class: %1.' bindWith:cls name).
  5170                             alreadyWarned := alreadyWarned + 1.
  5170                             alreadyWarned := alreadyWarned + 1.
  5171                         ] ifFalse:[
  5171                         ] ifFalse:[
  5172                             alreadyWarned == 1 ifTrue:[
  5172                             alreadyWarned == 1 ifTrue:[
  5173                                 answer := Dialog confirmWithCancel:('Cannot tag unloaded class: %1.\\Suppress further warnings?' withCRs bindWith:cls name).
  5173                                 answer := Dialog confirmWithCancel:('Cannot tag unloaded class: %1.\\Suppress further warnings?' withCRs bindWith:cls name).
  5174                                 answer == nil ifTrue:[^ self].
  5174                                 answer isNil ifTrue:[^ self].
  5175                                 answer == true ifTrue:[
  5175                                 answer == true ifTrue:[
  5176                                     alreadyWarned := alreadyWarned + 1.
  5176                                     alreadyWarned := alreadyWarned + 1.
  5177                                 ].
  5177                                 ].
  5178                             ]
  5178                             ]
  5179                         ].
  5179                         ].