diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-13 17:43:39 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-13 17:43:39 -0600 |
commit | 359640943bcf155faa9a067dde9e00a123276290 (patch) | |
tree | fb3d55ea5e18949042fb0064123fb73d2b1eb932 /src/kernel/qpaintdevice_x11.cpp | |
parent | a829bcdc533e154000803d517200d32fe762e85c (diff) | |
download | tqt3-359640943bcf155faa9a067dde9e00a123276290.tar.gz tqt3-359640943bcf155faa9a067dde9e00a123276290.zip |
Automated update from Qt3
Diffstat (limited to 'src/kernel/qpaintdevice_x11.cpp')
-rw-r--r-- | src/kernel/qpaintdevice_x11.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kernel/qpaintdevice_x11.cpp b/src/kernel/qpaintdevice_x11.cpp index aefd8971a..e3a2617e6 100644 --- a/src/kernel/qpaintdevice_x11.cpp +++ b/src/kernel/qpaintdevice_x11.cpp @@ -526,8 +526,8 @@ static void create_dpis() int i, screens = ScreenCount( dpy ); dpisX = new int[ screens ]; dpisY = new int[ screens ]; - Q_CHECK_PTR( dpisX ); - Q_CHECK_PTR( dpisY ); + TQ_CHECK_PTR( dpisX ); + TQ_CHECK_PTR( dpisY ); for ( i = 0; i < screens; i++ ) { dpisX[ i ] = (DisplayWidth(dpy,i) * 254 + DisplayWidthMM(dpy,i)*5) @@ -881,7 +881,7 @@ void bitBlt( TQPaintDevice *dst, int dx, int dy, } } else if ( ts == TQInternal::Widget ) {// bitBlt to temp pixmap pm = new TQPixmap( sw, sh ); - Q_CHECK_PTR( pm ); + TQ_CHECK_PTR( pm ); bitBlt( pm, 0, 0, src, sx, sy, sw, sh ); } else { #if defined(QT_CHECK_RANGE) |