Changeset 99 for trunk/src/gui/kernel/qwidget_p.h
- Timestamp:
- Aug 5, 2009, 3:19:05 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gui/kernel/qwidget_p.h
r95 r99 67 67 #endif // Q_WS_WIN 68 68 69 #ifdef Q_WS_PM 70 #include "QtCore/qt_os2.h" 71 #endif 72 69 73 #ifdef Q_WS_X11 70 74 #include "QtGui/qx11info_x11.h" … … 150 154 HICON winIconSmall; // internal small Windows icon 151 155 #endif 156 #if defined(Q_WS_PM) 157 HWND fId; 158 #endif 152 159 QRect normalGeometry; // used by showMin/maximized/FullScreen 153 160 QWindowSurface *windowSurface; … … 460 467 461 468 QInputContext *inputContext() const; 469 470 #if defined(Q_WS_PM) 471 HWND frameWinId() const 472 { return maybeTopData() && maybeTopData()->fId != NULLHANDLE ? 473 maybeTopData()->fId : data.winid; } 474 #endif 462 475 463 476 #if defined(Q_WS_QWS)
Note:
See TracChangeset
for help on using the changeset viewer.