Re: Allow to add a ActionButton in KPageDialog

2014-07-04 Thread laurent Montel
Le vendredi 4 juillet 2014 16:46:24 Christoph Feck a écrit : > On Thursday 03 July 2014 19:50:35 laurent Montel wrote: > > Hi, > > During kdepim porting I saw that it was not possible to add a > > ActionButton as QButtonBox is protected. > > => we can do it if we create a derived class. > > But it’

Re: Allow to add a ActionButton in KPageDialog

2014-07-04 Thread Christoph Feck
On Thursday 03 July 2014 19:50:35 laurent Montel wrote: > Hi, > During kdepim porting I saw that it was not possible to add a > ActionButton as QButtonBox is protected. > => we can do it if we create a derived class. > But it’s not a very easy method for just add a button. > > I would like to add

Re: Allow to add a ActionButton in KPageDialog

2014-07-04 Thread Kevin Ottens
On Friday 04 July 2014 09:17:04 laurent Montel wrote: > Le vendredi 4 juillet 2014 08:13:58 Kevin Ottens a écrit : > > On Thursday 03 July 2014 19:50:35 laurent Montel wrote: > > > Hi, > > > During kdepim porting I saw that it was not possible to add a > > > ActionButton > > > as QButtonBox is prot

Re: Allow to add a ActionButton in KPageDialog

2014-07-04 Thread laurent Montel
Le vendredi 4 juillet 2014 08:13:58 Kevin Ottens a écrit : > On Thursday 03 July 2014 19:50:35 laurent Montel wrote: > > Hi, > > During kdepim porting I saw that it was not possible to add a ActionButton > > as QButtonBox is protected. > > => we can do it if we create a derived class. > > But it’s

Re: Allow to add a ActionButton in KPageDialog

2014-07-03 Thread Kevin Ottens
On Thursday 03 July 2014 19:50:35 laurent Montel wrote: > Hi, > During kdepim porting I saw that it was not possible to add a ActionButton > as QButtonBox is protected. > => we can do it if we create a derived class. > But it’s not a very easy method for just add a button. > > I would like to add

Allow to add a ActionButton in KPageDialog

2014-07-03 Thread laurent Montel
Hi, During kdepim porting I saw that it was not possible to add a ActionButton as QButtonBox is protected. => we can do it if we create a derived class. But it’s not a very easy method for just add a button. I would like to add a new method to do it. I created a patch for it. What do you think a