Ignore:
Timestamp:
Nov 16, 2005, 8:36:46 PM (20 years ago)
Author:
dmik
Message:

Transferred Qt for OS/2 version 3.3.1-rc5 sources from the CVS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel/qpainter.cpp

    r7 r8  
    16351635        } else {
    16361636            txop = TxScale;
    1637 #if defined(Q_WS_WIN)
     1637#if defined(Q_WS_WIN) || defined(Q_WS_PM)
    16381638            setf(DirtyFont);
    16391639#endif
     
    16411641    } else {
    16421642        txop = TxRotShear;
    1643 #if defined(Q_WS_WIN)
     1643#if defined(Q_WS_WIN) || defined(Q_WS_PM)
    16441644        setf(DirtyFont);
    16451645#endif
     
    23452345        if ( !pdev->cmd( QPaintDevice::PdcDrawPixmap, this, param ) || !hdc )
    23462346            return;
     2347#elif defined(Q_WS_PM)
     2348        if ( !pdev->cmd( QPaintDevice::PdcDrawPixmap, this, param ) || !hps )
     2349            return;
    23472350#elif defined(Q_WS_QWS)
    23482351        pdev->cmd( QPaintDevice::PdcDrawPixmap, this, param );
     
    24932496        if ( !pdev->cmd( QPaintDevice::PdcDrawImage, this, param ) || !hdc )
    24942497            return;
     2498#elif defined(Q_WS_PM)
     2499        if ( !pdev->cmd( QPaintDevice::PdcDrawImage, this, param ) || !hps )
     2500            return;
    24952501#elif defined (Q_WS_QWS)
    24962502        pdev->cmd( QPaintDevice::PdcDrawImage, this, param );
     
    25512557#if defined(Q_WS_WIN)
    25522558        if ( !pdev->cmd( QPaintDevice::PdcDrawImage, this, param ) || !hdc )
     2559            return;
     2560#elif defined(Q_WS_PM)
     2561        if ( !pdev->cmd( QPaintDevice::PdcDrawImage, this, param ) || !hps )
    25532562            return;
    25542563#elif defined(Q_WS_QWS)
     
    27932802                     !hdc )
    27942803                    return;                     // QPrinter wants PdcDrawText2
     2804#elif defined(Q_WS_PM)
     2805                if ( !pdev->cmd( QPaintDevice::PdcDrawText2Formatted,
     2806                                 this, param) ||
     2807                     !hps )
     2808                    return;
    27952809#elif defined(Q_WS_QWS)
    27962810                pdev->cmd( QPaintDevice::PdcDrawText2Formatted, this, param);
Note: See TracChangeset for help on using the changeset viewer.