summaryrefslogtreecommitdiffstats
path: root/src/kernel/qregion_x11.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:24:30 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:24:30 -0600
commita830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (patch)
tree3910055c634e2ca44eacd2c892118634df9b3597 /src/kernel/qregion_x11.cpp
parentb0b53cc84f215df9b9bcce77253a6b7a9d300986 (diff)
downloadqt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.tar.gz
qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.zip
Rename additional global TQt functions
Diffstat (limited to 'src/kernel/qregion_x11.cpp')
-rw-r--r--src/kernel/qregion_x11.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kernel/qregion_x11.cpp b/src/kernel/qregion_x11.cpp
index 7b04a15..40bb023 100644
--- a/src/kernel/qregion_x11.cpp
+++ b/src/kernel/qregion_x11.cpp
@@ -2433,7 +2433,7 @@ static void cleanup_empty_region()
QRegion::QRegion()
{
if ( !empty_region ) { // avoid too many allocs
- qAddPostRoutine( cleanup_empty_region );
+ tqAddPostRoutine( cleanup_empty_region );
empty_region = new QRegion( TRUE );
Q_CHECK_PTR( empty_region );
}
@@ -2469,7 +2469,7 @@ QRegion::QRegion( const QRect &r, RegionType t )
{
if ( r.isEmpty() ) {
if ( !empty_region ) { // avoid too many allocs
- qAddPostRoutine( cleanup_empty_region );
+ tqAddPostRoutine( cleanup_empty_region );
empty_region = new QRegion( TRUE );
Q_CHECK_PTR( empty_region );
}
@@ -2516,7 +2516,7 @@ QRegion::QRegion( const QPointArray &a, bool winding )
winding ? WindingRule : EvenOddRule );
} else {
if ( !empty_region ) {
- qAddPostRoutine( cleanup_empty_region );
+ tqAddPostRoutine( cleanup_empty_region );
empty_region = new QRegion( TRUE );
Q_CHECK_PTR( empty_region );
}
@@ -2551,7 +2551,7 @@ QRegion::QRegion( const QBitmap & bm )
{
if ( bm.isNull() ) {
if ( !empty_region ) { // avoid too many allocs
- qAddPostRoutine( cleanup_empty_region );
+ tqAddPostRoutine( cleanup_empty_region );
empty_region = new QRegion( TRUE );
Q_CHECK_PTR( empty_region );
}