On domingo, 28 de julho de 2013 22:48:45, Milian Wolff wrote:
> On Sunday 28 July 2013 12:18:15 Thiago Macieira wrote:
> > On domingo, 28 de julho de 2013 13:51:13, Matt Broadstone wrote:
> > > Is there a reason this wasn't added for convenience? Or, would there be
> > > interest in me submitting a
On domingo, 28 de julho de 2013 13:51:13, Matt Broadstone wrote:
> Is there a reason this wasn't added for convenience? Or, would there be
> interest in me submitting a patch to include this in a later version of Qt?
> We should even be able to fix this seamlessly with templates unless I'm
> mistak
Hey all,
I've found more often than I'd like in my unit tests I'm writing a custom
deleter for QObjects when using a QScopedPointer. Something to the effect
of:
struct QObjectDeleter
{
static inline void cleanup(QObject *pointer) {
if (pointer)
pointer->deleteLater();
}