Changeset 668
- Timestamp:
- Mar 10, 2010, 4:05:22 PM (15 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/3rdparty/os2/xsystray/xsystray_api.c
r423 r668 331 331 { 332 332 BOOL brc; 333 ULONG xrc ;333 ULONG xrc; 334 334 PPIB ppib; 335 335 HAB hab; -
trunk/src/gui/kernel/qkeymapper_pm.cpp
r659 r668 436 436 APIRET arc = KbdXlate(&kt, 0); 437 437 Q_ASSERT(arc == NO_ERROR); 438 438 439 keyLayout[chm.scancode]->qtKey[i][j] = 439 440 QString::fromLocal8Bit((char*)&kt.chChar, 1)[0].toUpper().unicode(); -
trunk/src/gui/kernel/qwidget_pm.cpp
r659 r668 835 835 WinValidateRegion(hwnd, update, TRUE); 836 836 837 POINTL ptls[4]; 838 RECTL &sr = *(PRECTL) &ptls[2]; 839 RECTL &tr = *(PRECTL) &ptls[0]; 837 char points[sizeof(POINTL) * 4]; 838 register PPOINTL ptls = reinterpret_cast<PPOINTL>(points); 839 RECTL &sr = *reinterpret_cast<PRECTL>(&ptls[2]); 840 RECTL &tr = *reinterpret_cast<PRECTL>(&ptls[0]); 840 841 841 842 // get the source rect for scrolling … … 1891 1892 if (frameWinId() != NULLHANDLE) 1892 1893 qt_WinSetWindowPos(frameWinId(), HWND_TOP, 0, 0, 0, 0, SWP_ZORDER); 1893 1894 Q_UNUSED(q); 1894 1895 } 1895 1896
Note:
See TracChangeset
for help on using the changeset viewer.