Changeset 307 for trunk/src/gui/kernel/qapplication_pm.cpp
- Timestamp:
- Nov 10, 2009, 12:00:52 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gui/kernel/qapplication_pm.cpp
r301 r307 693 693 mw = mw->parentWidget()->window(); 694 694 if (mw->testAttribute(Qt::WA_WState_Created) && mw != QApplicationPrivate::active_window) 695 WinSetWindowPos(mw->d_func()->frameWinId(), HWND_TOP, 0, 0, 0, 0, SWP_ZORDER 695 WinSetWindowPos(mw->d_func()->frameWinId(), HWND_TOP, 0, 0, 0, 0, SWP_ZORDER); 696 696 } 697 697 } else { … … 1983 1983 setAttribute(Qt::WA_PendingUpdate, false); 1984 1984 1985 // @todo not sure we need it1986 1985 const QRegion dirtyInBackingStore(qt_dirtyRegion(this)); 1987 1986 // Make sure the invalidated region contains the region we're about to repaint. … … 1989 1988 // to enlarge it afterwards (only shrink it). 1990 1989 if (!dirtyInBackingStore.isEmpty()) 1991 WinInvalidateRegion(internalWinId(), dirtyInBackingStore.handle( ), FALSE);1990 WinInvalidateRegion(internalWinId(), dirtyInBackingStore.handle(height()), FALSE); 1992 1991 1993 1992 RECTL rcl;
Note:
See TracChangeset
for help on using the changeset viewer.