Changeset 711


Ignore:
Timestamp:
Apr 26, 2010, 5:36:02 PM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

gui: Fixed: Never add tooltip windows to the top-level window list and only do so for splash windows if they have the Qt::WindowTitleHint flag set.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gui/kernel/qwidget_pm.cpp

    r706 r711  
    18741874        if (q->isWindow()) {
    18751875            if (q->windowType() != Qt::Popup &&
     1876
    18761877                q->windowType() != Qt::Tool &&
    1877                 (q->windowType() != Qt::Dialog || !q->parentWidget())
     1878                (q->windowType() != Qt::Dialog || !q->parentWidget()) &&
     1879                (q->windowType() != Qt::SplashScreen ||
     1880                 (data.window_flags & Qt::WindowTitleHint))
    18781881            ) {
    18791882                HSWITCH &swEntry = topData()->swEntry;
Note: See TracChangeset for help on using the changeset viewer.