Automated update from Qt3

pull/1/head
Timothy Pearson 12 years ago
parent 15bb7aeb80
commit c5e69959c9

@ -204,7 +204,9 @@ public:
PdcSaveWMatrix = 56,
PdcRestoreWMatrix = 57,
PdcSetClip = 60, // ival
PdcSetClipRegion = 61, // rgn
PdcSetClipRegion = 61, // rgn,cmode
PdcFlush = 62, // <void>
PdcFlushRegion = 63, // rgn,cmode
PdcReservedStart = 0, // codes 0-199 are reserved
PdcReservedStop = 199 // for TQt

@ -1264,8 +1264,16 @@ bool TQPainter::end() // end painting
\sa flush() CoordinateMode
*/
void TQPainter::flush(const TQRegion &, CoordinateMode)
void TQPainter::flush(const TQRegion &rgn, CoordinateMode m)
{
if ( testf(ExtDev) ) {
TQPDevCmdParam param[2];
param[0].rgn = &rgn;
param[1].ival = m;
pdev->cmd( TQPaintDevice::PdcFlushRegion, this, param );
return;
}
flush();
}
@ -1278,6 +1286,11 @@ void TQPainter::flush(const TQRegion &, CoordinateMode)
void TQPainter::flush()
{
if ( testf(ExtDev) ) {
pdev->cmd( TQPaintDevice::PdcFlush, this, 0 );
return;
}
if ( isActive() && dpy )
XFlush( dpy );
}

Loading…
Cancel
Save