Ignore:
Timestamp:
Jul 31, 2009, 1:13:57 AM (16 years ago)
Author:
Dmitry A. Kuminov
Message:

gui: Added OS/2 stubs for platform-specific parts of all key GUI classes. Non-key classes are temporarily disabled with QT_NO_ defines.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gui/painting/qregion.cpp

    r2 r95  
    566566  \sa intersected()
    567567*/
    568 #if !defined(Q_WS_WIN) || defined(Q_OS_WINCE)
     568#if (!defined(Q_WS_WIN) || defined(Q_OS_WINCE)) && !defined(Q_WS_PM)
    569569QRegion& QRegion::operator&=(const QRegion &r)
    570570    { return *this = *this & r; }
     
    596596  \sa subtracted()
    597597*/
    598 #if !defined(Q_WS_WIN) || defined(Q_OS_WINCE)
     598#if (!defined(Q_WS_WIN) || defined(Q_OS_WINCE)) && !defined(Q_WS_PM)
    599599QRegion& QRegion::operator-=(const QRegion &r)
    600600    { return *this = *this - r; }
Note: See TracChangeset for help on using the changeset viewer.