Ignore:
Timestamp:
Jul 28, 2009, 11:08:37 PM (16 years ago)
Author:
Dmitry A. Kuminov
Message:

gui: Started OS/2 versions of QApplication and QWidget.

File:
1 edited

Legend:

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

    r2 r92  
    25792579        w = leaveList.at(i);
    25802580        if (!qApp->activeModalWidget() || QApplicationPrivate::tryModalHelper(w, 0)) {
    2581 #if defined(Q_WS_WIN) || defined(Q_WS_X11)
     2581#if defined(Q_WS_WIN) || defined(Q_WS_PM) || defined(Q_WS_X11)
    25822582            if (leaveAfterRelease == w)
    25832583                leaveAfterRelease = 0;
     
    29522952}
    29532953
    2954 #if defined(Q_WS_WIN) || defined(Q_WS_X11)
     2954#if defined(Q_WS_WIN) || defined(Q_WS_PM) || defined(Q_WS_X11)
    29552955/*
    29562956    This function should only be called when the widget changes visibility, i.e.
     
    30083008#endif // QT_NO_CURSOR
    30093009}
    3010 #endif // Q_WS_WIN || Q_WS_X11
     3010#endif // Q_WS_WIN || Q_WS_PM || Q_WS_X11
    30113011
    30123012/*!
     
    34983498    event loop receives events from the window system and dispatches these to
    34993499    the application widgets.
    3500  
     3500
    35013501    Generally, no user interaction can take place before calling exec(). As a
    35023502    special case, modal widgets like QMessageBox can be used before calling
Note: See TracChangeset for help on using the changeset viewer.