On Wed, Sep 10, 2008 at 5:30 AM, D. Michael McIntyre <[EMAIL PROTECTED]> wrote: > It's been a long time since I actually read any of the porting instruction > stuff, and I've hit a bit of a question. > > I'm almost 100% sure that all the old const char* name stuff is obsolete and > useless, but what about WFlags?
I think it's been replaced by Qt::WindowFlags -- I say replaced rather than renamed because I think some of the enum elements have probably been renamed as well. But you're quite right, we don't need it in the vast majority of cases that refer to it. Go ahead and remove it. There are a few cases where we do actually want to set a window flag on a widget -- search for e.g. WDestructiveClose -- but they don't have to be set on construction anyway, it's equally good just to call setWindowFlags() afterwards. 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
