Ignore:
Timestamp:
Sep 8, 2009, 5:29:13 PM (16 years ago)
Author:
Dmitry A. Kuminov
Message:

gui: Fixed the build after disabling the qt3support module: some components still used deprecated Qt3 methods internally.

File:
1 edited

Legend:

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

    r142 r169  
    15691569                QRect r = QApplication::desktop()->screenGeometry(this);
    15701570                QRect fs(d->frameStrut());
    1571                 r.rLeft() -= fs.left();
    1572                 r.rRight() += fs.right();
    1573                 r.rTop() -= fs.top();
    1574                 r.rBottom() += fs.bottom();
     1571                fs.adjust(-fs.left(), -fs.top(), fs.right(), fs.bottom());
    15751572                fl |= SWP_ZORDER | SWP_MOVE | SWP_SIZE;
    15761573                WinSetWindowPos(fId, HWND_TOP, r.left(),
Note: See TracChangeset for help on using the changeset viewer.