summaryrefslogtreecommitdiffstats
path: root/src/kernel/qregion_x11.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-28 22:31:39 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-28 22:31:39 -0600
commit41bb408dde90e755b07cd2ab8a9bdec7548c84b0 (patch)
tree6d4d5407c000add30aa78630e009c0e5d633e440 /src/kernel/qregion_x11.cpp
parent1740cd279522c060e738bbbffacab83355d2b794 (diff)
downloadtqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.tar.gz
tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.zip
Automated conversion from qt3
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 3cd7d3436..ccf406729 100644
--- a/src/kernel/qregion_x11.cpp
+++ b/src/kernel/qregion_x11.cpp
@@ -2433,7 +2433,7 @@ static void cleanup_empty_region()
TQRegion::TQRegion()
{
if ( !empty_region ) { // avoid too many allocs
- qAddPostRoutine( cleanup_empty_region );
+ tqAddPostRoutine( cleanup_empty_region );
empty_region = new TQRegion( TRUE );
TQ_CHECK_PTR( empty_region );
}
@@ -2469,7 +2469,7 @@ TQRegion::TQRegion( const TQRect &r, RegionType t )
{
if ( r.isEmpty() ) {
if ( !empty_region ) { // avoid too many allocs
- qAddPostRoutine( cleanup_empty_region );
+ tqAddPostRoutine( cleanup_empty_region );
empty_region = new TQRegion( TRUE );
TQ_CHECK_PTR( empty_region );
}
@@ -2516,7 +2516,7 @@ TQRegion::TQRegion( const TQPointArray &a, bool winding )
winding ? WindingRule : EvenOddRule );
} else {
if ( !empty_region ) {
- qAddPostRoutine( cleanup_empty_region );
+ tqAddPostRoutine( cleanup_empty_region );
empty_region = new TQRegion( TRUE );
TQ_CHECK_PTR( empty_region );
}
@@ -2551,7 +2551,7 @@ TQRegion::TQRegion( const TQBitmap & bm )
{
if ( bm.isNull() ) {
if ( !empty_region ) { // avoid too many allocs
- qAddPostRoutine( cleanup_empty_region );
+ tqAddPostRoutine( cleanup_empty_region );
empty_region = new TQRegion( TRUE );
TQ_CHECK_PTR( empty_region );
}