Define the default debug area and no more "kDebug(1211)".

This commit is contained in:
Jekyll Wu
2011-09-27 22:59:28 +08:00
parent 8bc24d6bcc
commit 607e2d44d0
6 changed files with 12 additions and 11 deletions

View File

@@ -114,12 +114,12 @@ const Block* BlockArray::at(size_t i)
return lastmap;
if (i > index) {
//kDebug(1211) << "BlockArray::at() i > index\n";
//kDebug() << "BlockArray::at() i > index\n";
return 0;
}
// if (index - i >= length) {
// kDebug(1211) << "BlockArray::at() index - i >= length\n";
// kDebug() << "BlockArray::at() index - i >= length\n";
// return 0;
// }
@@ -155,7 +155,7 @@ bool BlockArray::setSize(size_t newsize)
bool BlockArray::setHistorySize(size_t newsize)
{
// kDebug(1211) << "setHistorySize " << size << " " << newsize;
// kDebug() << "setHistorySize " << size << " " << newsize;
if (size == newsize)
return false;