On Tue, Nov 23, 2010 at 4:07 PM, Daniel Faust <[email protected]> wrote: > commit d875d9d84a2e8274d675aa7a3124523f19f72bf7 > branch master > Author: Daniel Faust <[email protected]> > Date: Tue Nov 23 16:06:48 2010 +0100 > > Fix crash in about dialog
[snip] > + QPointer<AnimatedBarWidget> m_showOcsDonorButton; Please don't use QPointer any more, but instead use "QWeakPointer". It's a new feature in Qt 4.6, and it works essentially the same way, while being more performant. QPointer is considered deprecated. -- Mark Kretschmann Amarok Developer, Software Engineer at KO GmbH Fellow of the Free Software Foundation Europe http://amarok.kde.org - http://fsfe.org - http://kogmbh.com _______________________________________________ Amarok-devel mailing list [email protected] https://mail.kde.org/mailman/listinfo/amarok-devel
