Re: [Pharo-dev] DebugAction >> category

2015-06-01 Thread Marcus Denker
> On 31 May 2015, at 07:47, stepharo wrote: > > Oki > > You see when you browse the code you wonder if you should pass a class tag or > a method protocol. > So I will update the comment. > To me category is a bit too much overloaded. > Restricting the use of names is not a solution for tha

Re: [Pharo-dev] DebugAction >> category

2015-05-31 Thread Ben Coman
On Sun, May 31, 2015 at 1:47 PM, stepharo wrote: > Oki > > You see when you browse the code you wonder if you should pass a class tag > or a method protocol. So I will update the comment. > To me category is a bit too much overloaded. There are 848 methods containing the string 'category', some

Re: [Pharo-dev] DebugAction >> category

2015-05-30 Thread stepharo
hi doru could you the same for GTSpotterAllCandidatesAdded, CandidateAdded, CandidataedAmountChanged, CatgeorySelected DiveInCategory category "It has nothing to do with class category or the old method category now method protocol." ^ category It would be nice to have a common su

Re: [Pharo-dev] DebugAction >> category

2015-05-30 Thread stepharo
Doru can you change the comment of this method to the GLM GLMAction>>category "The name of the category that should be used when this action is displayed in a context menu. It has nothing to do with class category or the old method category now method protocol." ^ category Yes it is

Re: [Pharo-dev] DebugAction >> category

2015-05-30 Thread stepharo
I wrote category "Return the kind of debugger action. It has nothing to do with class category or the old method category now method protocol." ^ category ifNil: [ self defaultCategory ] Stef Le 31/5/15 07:35, Tudor Girba a écrit : Hi, This is not dead code, only the default Pharo d

Re: [Pharo-dev] DebugAction >> category

2015-05-30 Thread stepharo
Oki You see when you browse the code you wonder if you should pass a class tag or a method protocol. So I will update the comment. To me category is a bit too much overloaded. Stef Le 31/5/15 07:35, Tudor Girba a écrit : Hi, This is not dead code, only the default Pharo debugger does not ma

Re: [Pharo-dev] DebugAction >> category

2015-05-30 Thread Tudor Girba
Hi, This is not dead code, only the default Pharo debugger does not make use of it. It is used in the GTDebugger for helping group actions by their category. The terminology is taken from Glamour (GLMAction>>#category). Cheers, Doru On Sun, May 31, 2015 at 7:24 AM, stepharo wrote: > Hi andrei

[Pharo-dev] DebugAction >> category

2015-05-30 Thread stepharo
Hi andrei and others we have DebugAction>>category ^ category ifNil: [ self defaultCategory ] DebugAction>>defaultCategory ^ nil And I tried to browse the senders by scoping the search to the Debugger* packages and I got no sender. I have no direct user either. So do you know if t