summaryrefslogtreecommitdiffstats
path: root/src/kernel/qasyncio.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/qasyncio.cpp
parent1740cd279522c060e738bbbffacab83355d2b794 (diff)
downloadtqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.tar.gz
tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.zip
Automated conversion from qt3
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 84912e1ff..0bccc14d8 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");
}
/*!