summaryrefslogtreecommitdiffstats
path: root/tdecachegrind/tdecachegrind/utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdecachegrind/tdecachegrind/utils.cpp')
-rw-r--r--tdecachegrind/tdecachegrind/utils.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/tdecachegrind/tdecachegrind/utils.cpp b/tdecachegrind/tdecachegrind/utils.cpp
index 65c7e347..c1a68044 100644
--- a/tdecachegrind/tdecachegrind/utils.cpp
+++ b/tdecachegrind/tdecachegrind/utils.cpp
@@ -354,7 +354,7 @@ FixFile::FixFile(TQFile* file)
_filename = file->name();
if (!file->isOpen() && !file->open( IO_ReadOnly ) ) {
- qWarning( "%s: %s", (const char*) TQFile::encodeName(_filename),
+ tqWarning( "%s: %s", (const char*) TQFile::encodeName(_filename),
strerror( errno ) );
_len = 0;
_currentLeft = 0;
@@ -377,7 +377,7 @@ FixFile::FixFile(TQFile* file)
_len = len;
_used_mmap = true;
- if (0) qDebug("Mapped '%s'", _filename.ascii());
+ if (0) tqDebug("Mapped '%s'", _filename.ascii());
} else {
#endif // HAVE_MMAP
// try reading the data into memory instead
@@ -398,9 +398,9 @@ FixFile::~FixFile()
#ifdef HAVE_MMAP
if (_used_mmap) {
- if (0) qDebug("Unmapping '%s'", _filename.ascii());
+ if (0) tqDebug("Unmapping '%s'", _filename.ascii());
if (munmap(_base, _len) != 0)
- qWarning( "munmap: %s", strerror( errno ) );
+ tqWarning( "munmap: %s", strerror( errno ) );
}
#endif // HAVE_MMAP
}
@@ -424,7 +424,7 @@ bool FixFile::nextLine(FixString& str)
if (l>199) l = 199;
strncpy(tmp, _current, l);
tmp[l] = 0;
- qDebug("[FixFile::nextLine] At %d, len %d: '%s'",
+ tqDebug("[FixFile::nextLine] At %d, len %d: '%s'",
_current - _base, _currentLeft-left, tmp);
}