diff options
Diffstat (limited to 'sources/events/VSEvent.java')
| -rw-r--r-- | sources/events/VSEvent.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sources/events/VSEvent.java b/sources/events/VSEvent.java index e84e3aa..1ce8570 100644 --- a/sources/events/VSEvent.java +++ b/sources/events/VSEvent.java @@ -11,6 +11,8 @@ abstract public class VSEvent extends VSPrefs { public void init(VSProcess process) { this.process = process; this.prefs = process.getPrefs(); + + onInit(); } protected final void setClassname(String eventClassname) { @@ -29,6 +31,7 @@ abstract public class VSEvent extends VSPrefs { } public final String getShortname() { + System.out.println("getShortname " + eventClassname); return VSRegisteredEvents.getShortname(eventClassname); } |
