On Mon, Sep 8, 2008 at 10:00 PM, Emanuel Rumpf <[EMAIL PROTECTED]> wrote: > What happens with: > > kapp->processEvents(500); > kapp->palette() > kapp->font() > kapp->setStyle() > kapp->exec(); > kapp->caption(); > > etc.... ?
Most of these can be replaced by static methods of QCoreApplication or QApplication. Check the documentation for these two classes in Qt4. For example, replace kapp->processEvents with QCoreApplication::processEvents() (or QApplication::processEvents, since QApplication is a subclass of QCoreApplication). > gui/application/RosegardenIface.cpp: return > DCOPRef(kapp->dcopClient()->appId(), Ignore this one, the whole file will be disappearing soon enough as I continue to remove DCOP references. That goes for everything with DCOP in it. Chris ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Rosegarden-devel mailing list [email protected] - use the link below to unsubscribe https://lists.sourceforge.net/lists/listinfo/rosegarden-devel
