VDBSimpleDebuggerConsoleApplication.st
changeset 241 9996050286c5
parent 190 f37694040277
child 264 23960fcb9dac
--- a/VDBSimpleDebuggerConsoleApplication.st	Wed Nov 17 13:38:30 2021 +0000
+++ b/VDBSimpleDebuggerConsoleApplication.st	Thu Nov 18 16:29:30 2021 +0000
@@ -1,6 +1,7 @@
 "
 jv:vdb - Visual / VM Debugger
 Copyright (C) 2015-now Jan Vrany
+Copyright (C) 2021 LabWare
 
 This software is licensed under 'Creative Commons Attribution-NonCommercial 4.0 International License'
 
@@ -23,6 +24,7 @@
 "
 jv:vdb - Visual / VM Debugger
 Copyright (C) 2015-now Jan Vrany
+Copyright (C) 2021 LabWare
 
 This software is licensed under 'Creative Commons Attribution-NonCommercial 4.0 International License'
 
@@ -240,16 +242,15 @@
 !
 
 subscribe   
-    "Register for debugger events. To be overrided by subclasses"
+    super subscribe.
 
-    super subscribe.
     debugger announcer 
 "/        when: GDBCommandEvent           send: #onCommandEvent:          to: self;
 "/        when: GDBCommandResultEvent     send: #onCommandResultEvent:    to: self;
 
         when: GDBRunningEvent           send: #onRunningEvent:          to: self;
         when: GDBStoppedEvent           send: #onStoppedEvent:          to: self;
-        when: GDBEventSetProcessingFinished
+        when: GDBEventSequenceProcessingFinished
                                         send: #onEventSetProcessingFinished:
                                                                         to: self;
 
@@ -264,6 +265,8 @@
     "Created: / 06-06-2014 / 21:26:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 13-03-2019 / 13:59:19 / jv"
     "Modified: / 01-12-2019 / 20:24:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 17-11-2021 / 16:39:05 / Jan Vrany <jan.vrany@labware.com>"
+    "Modified (comment): / 18-11-2021 / 16:24:47 / Jan Vrany <jan.vrany@labware.com>"
 ! !
 
 !VDBSimpleDebuggerConsoleApplication methodsFor:'private'!