Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!uunet!ncrcom!ncratl!vkessler From: vkessler@ncratl.AtlantaGA.NCR.COM (Vance Kessler) Newsgroups: comp.lang.smalltalk Subject: Smalltalk/V PM 1.2 Bug Fix Keywords: smalltalk vpm Message-ID: <18895@ncratl.AtlantaGA.NCR.COM> Date: 19 Apr 91 12:33:03 GMT Organization: NCR Engineering and Manufacturing Atlanta -- Atlanta, GA Lines: 12 I found a problem with the debugger in version 1.2 of Smalltalk/V PM. The hop/skip/jump buttons did not work at all. However, their corresponding menu items did work. I discovered that this was an error in the way the Button class was defined, THEY FORGOT TO OVERRIDE A METHOD! So, I have listed below the fix I used. ! Button methods ! buttonClicked "Private - The user clicked the receiver. Let the owner process the event." ((style bitAnd: 7) = BsPushbutton) ifTrue: [self event: #clicked]! !