Changeset 8 for trunk/src/kernel/qpainter.cpp
- Timestamp:
- Nov 16, 2005, 8:36:46 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel/qpainter.cpp
r7 r8 1635 1635 } else { 1636 1636 txop = TxScale; 1637 #if defined(Q_WS_WIN) 1637 #if defined(Q_WS_WIN) || defined(Q_WS_PM) 1638 1638 setf(DirtyFont); 1639 1639 #endif … … 1641 1641 } else { 1642 1642 txop = TxRotShear; 1643 #if defined(Q_WS_WIN) 1643 #if defined(Q_WS_WIN) || defined(Q_WS_PM) 1644 1644 setf(DirtyFont); 1645 1645 #endif … … 2345 2345 if ( !pdev->cmd( QPaintDevice::PdcDrawPixmap, this, param ) || !hdc ) 2346 2346 return; 2347 #elif defined(Q_WS_PM) 2348 if ( !pdev->cmd( QPaintDevice::PdcDrawPixmap, this, param ) || !hps ) 2349 return; 2347 2350 #elif defined(Q_WS_QWS) 2348 2351 pdev->cmd( QPaintDevice::PdcDrawPixmap, this, param ); … … 2493 2496 if ( !pdev->cmd( QPaintDevice::PdcDrawImage, this, param ) || !hdc ) 2494 2497 return; 2498 #elif defined(Q_WS_PM) 2499 if ( !pdev->cmd( QPaintDevice::PdcDrawImage, this, param ) || !hps ) 2500 return; 2495 2501 #elif defined (Q_WS_QWS) 2496 2502 pdev->cmd( QPaintDevice::PdcDrawImage, this, param ); … … 2551 2557 #if defined(Q_WS_WIN) 2552 2558 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 ) 2553 2562 return; 2554 2563 #elif defined(Q_WS_QWS) … … 2793 2802 !hdc ) 2794 2803 return; // QPrinter wants PdcDrawText2 2804 #elif defined(Q_WS_PM) 2805 if ( !pdev->cmd( QPaintDevice::PdcDrawText2Formatted, 2806 this, param) || 2807 !hps ) 2808 return; 2795 2809 #elif defined(Q_WS_QWS) 2796 2810 pdev->cmd( QPaintDevice::PdcDrawText2Formatted, this, param);
Note:
See TracChangeset
for help on using the changeset viewer.