VDBSourceApplication.st
changeset 241 9996050286c5
parent 195 810dc642ceb1
child 264 23960fcb9dac
--- a/VDBSourceApplication.st	Wed Nov 17 13:38:30 2021 +0000
+++ b/VDBSourceApplication.st	Thu Nov 18 16:29:30 2021 +0000
@@ -1,7 +1,7 @@
 "
 jv:vdb - Visual / VM Debugger
 Copyright (C) 2015-now Jan Vrany
-Copyright (C) 2020 LabWare
+Copyright (C) 2020-2021 LabWare
 
 This software is licensed under 'Creative Commons Attribution-NonCommercial 4.0 International License'
 
@@ -24,7 +24,7 @@
 "
 jv:vdb - Visual / VM Debugger
 Copyright (C) 2015-now Jan Vrany
-Copyright (C) 2020 LabWare
+Copyright (C) 2020-2021 LabWare
 
 This software is licensed under 'Creative Commons Attribution-NonCommercial 4.0 International License'
 
@@ -342,7 +342,7 @@
 !VDBSourceApplication methodsFor:'initialization & release'!
 
 subscribe   
-    "Register for debugger events. To be overrided by subclasses"
+    super subscribe.
 
     debugger announcer
         when: GDBStoppedEvent               send: #onStoppedEvent:          to: self;
@@ -354,7 +354,8 @@
 
     "Created: / 01-02-2018 / 15:18:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 21-03-2018 / 22:18:07 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 05-08-2020 / 13:41:32 / Jan Vrany <jan.vrany@labware.com>"
+    "Modified: / 17-11-2021 / 16:39:23 / Jan Vrany <jan.vrany@labware.com>"
+    "Modified (comment): / 18-11-2021 / 16:24:50 / Jan Vrany <jan.vrany@labware.com>"
 ! !
 
 !VDBSourceApplication class methodsFor:'documentation'!