GDBStoppedEvent.st
changeset 211 d493b4969b59
parent 135 6efae6456f14
child 223 5ba4abfcb7e7
--- a/GDBStoppedEvent.st	Mon Aug 10 00:17:19 2020 +0100
+++ b/GDBStoppedEvent.st	Wed Nov 11 23:12:37 2020 +0000
@@ -1,6 +1,7 @@
 "
 jv:libgdbs - GNU Debugger Interface Library
 Copyright (C) 2015-now Jan Vrany
+Copyright (C) 2020 LabWare
 
 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
@@ -33,6 +34,7 @@
 "
 jv:libgdbs - GNU Debugger Interface Library
 Copyright (C) 2015-now Jan Vrany
+Copyright (C) 2020 LabWare
 
 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
@@ -114,7 +116,7 @@
     GDBStopReasons classVarNames do:[:name | 
         | value |
 
-        value := GDBStopReasons classVarNamed: name.
+        value := GDBStopReasons classVarAt: name.
         aString = value ifTrue:[ 
             reason := value.
             ^ self.
@@ -123,6 +125,7 @@
     reason := aString
 
     "Created: / 31-08-2018 / 23:23:29 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 29-09-2020 / 09:37:31 / Jan Vrany <jan.vrany@labware.com>"
 ! !
 
 !GDBStoppedEvent class methodsFor:'documentation'!