GDBThreadGroup.st
changeset 90 6046abc9ddf4
parent 86 7f53d51a0a65
child 91 472a4841a8b6
--- a/GDBThreadGroup.st	Tue Oct 03 21:15:12 2017 +0100
+++ b/GDBThreadGroup.st	Fri Nov 17 20:36:08 2017 -0300
@@ -44,16 +44,16 @@
 
 descriptionType
     ^ Magritte::MASingleOptionDescription new
-        optionsAndLabels: { 
+        optionsAndLabels: (Array with: 
             GDBThreadGroupTypeProcess -> 'process'  
-        };
+        );
         accessor: (GDBMAPropertyAccessor forPropertyNamed: 'type');
         label: 'type';
         comment: 'The type of the thread group. At present, only ‘process’ is a valid type.';
         yourself.
 
     "Created: / 01-10-2014 / 01:29:13 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 05-06-2017 / 23:49:53 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 17-11-2017 / 20:08:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !GDBThreadGroup methodsFor:'accessing'!