diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:33:40 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:33:40 -0600 |
commit | 4fb897b216c41c13f128c71bcc66f60e2dc601c4 (patch) | |
tree | 2891b54cd6ec39db133da0110028ec93fc006751 /tdecore/kallocator.cpp | |
parent | 8fc8811ef6079a15decd33f1ea5d95dd718e4557 (diff) | |
download | tdelibs-4fb897b216c41c13f128c71bcc66f60e2dc601c4.tar.gz tdelibs-4fb897b216c41c13f128c71bcc66f60e2dc601c4.zip |
Rename additional global TQt functions
Diffstat (limited to 'tdecore/kallocator.cpp')
-rw-r--r-- | tdecore/kallocator.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tdecore/kallocator.cpp b/tdecore/kallocator.cpp index c02bbf3ff..e8d2e8692 100644 --- a/tdecore/kallocator.cpp +++ b/tdecore/kallocator.cpp @@ -76,7 +76,7 @@ KZoneAllocator::~KZoneAllocator() #ifndef NDEBUG // as this is called quite late in the app, we don't care // to use kdDebug if (count > 1) - qDebug("zone still contained %d blocks", count); + tqDebug("zone still contained %d blocks", count); #endif } @@ -190,12 +190,12 @@ KZoneAllocator::allocate(size_t _size) if ((unsigned long) _size + blockOffset > blockSize) { if (_size > blockSize) { - qDebug("KZoneAllocator: allocating more than %lu bytes", blockSize); + tqDebug("KZoneAllocator: allocating more than %lu bytes", blockSize); return 0; } addBlock(new MemBlock(blockSize)); blockOffset = 0; - //qDebug ("Allocating block #%d (%x)\n", num_blocks, currentBlock->begin); + //tqDebug ("Allocating block #%d (%x)\n", num_blocks, currentBlock->begin); } void *result = (void *)(currentBlock->begin+blockOffset); currentBlock->ref++; @@ -214,7 +214,7 @@ KZoneAllocator::deallocate(void *ptr) if (!list) { /* Can happen with certain usage pattern of intermixed free_since() and deallocate(). */ - //qDebug("Uhoh"); + //tqDebug("Uhoh"); return; } TQValueList<MemBlock*>::ConstIterator it = list->begin(); @@ -233,7 +233,7 @@ KZoneAllocator::deallocate(void *ptr) } /* Can happen with certain usage pattern of intermixed free_since() and deallocate(). */ - //qDebug("Uhoh2"); + //tqDebug("Uhoh2"); } void |