Re: [Development] Un-inlining members allowed?

2018-10-23 Thread Richard Gustavsen
version. -Richard Fra: Development på vegne av Edward Welbourne Sendt: mandag 22. oktober 2018 11.52.52 Til: Christian Ehrlicher Kopi: development@qt-project.org; al...@qt-project.org; Thiago Macieira Emne: Re: [Development] Un-inlining members allowed

Re: [Development] Un-inlining members allowed?

2018-10-22 Thread Edward Welbourne
On Sonntag, 21. Oktober 2018 20:07:38 CEST Christian Ehrlicher wrote: >>> one more question - is it ok to un-inline a function? For example I >>> want to move QListWidgetItem::isSelected() to the cpp file so I can >>> properly mark QListWidget::isItemSelected() as deprecated but I'm >>> unsure if

Re: [Development] Un-inlining members allowed?

2018-10-22 Thread Allan Sandfeld Jensen
On Sonntag, 21. Oktober 2018 20:07:38 CEST Christian Ehrlicher wrote: > Hi, > > one more question - is it ok to un-inline a function? For example I want > to move QListWidgetItem::isSelected() to the cpp file so I can properly > mark QListWidget::isItemSelected() as deprecated but I'm unsure if

Re: [Development] Un-inlining members allowed?

2018-10-21 Thread Thiago Macieira
On Sunday, 21 October 2018 11:07:38 PDT Christian Ehrlicher wrote: > Hi, > > one more question - is it ok to un-inline a function? For example I want > to move QListWidgetItem::isSelected() to the cpp file so I can properly > mark QListWidget::isItemSelected() as deprecated but I'm unsure if this

[Development] Un-inlining members allowed?

2018-10-21 Thread Christian Ehrlicher
Hi, one more question - is it ok to un-inline a function? For example I want to move QListWidgetItem::isSelected() to the cpp file so I can properly mark QListWidget::isItemSelected() as deprecated but I'm unsure if this is allowed. Thx, Christian