summaryrefslogtreecommitdiffstats
path: root/src/kernel/qasyncio.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/qasyncio.cpp')
-rw-r--r--src/kernel/qasyncio.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kernel/qasyncio.cpp b/src/kernel/qasyncio.cpp
index 84912e1f..0bccc14d 100644
--- a/src/kernel/qasyncio.cpp
+++ b/src/kernel/qasyncio.cpp
@@ -187,7 +187,7 @@ bool TQDataSource::rewindable() const
is TRUE, then the data source must take measures to allow the rewind()
function to subsequently operate as described. If rewindable() is FALSE,
the function should call TQDataSource::enableRewind(), which aborts with
- a qFatal() error.
+ a tqFatal() error.
For example, a network connection may choose to use a disk cache
of input only if rewinding is enabled before the first buffer-full of
@@ -196,7 +196,7 @@ bool TQDataSource::rewindable() const
*/
void TQDataSource::enableRewind( bool /* on */ )
{
- qFatal( "Attempted to make unrewindable TQDataSource rewindable" );
+ tqFatal( "Attempted to make unrewindable TQDataSource rewindable" );
}
/*!
@@ -205,7 +205,7 @@ void TQDataSource::enableRewind( bool /* on */ )
*/
void TQDataSource::rewind()
{
- qFatal("Attempted to rewind unrewindable TQDataSource");
+ tqFatal("Attempted to rewind unrewindable TQDataSource");
}
/*!