summaryrefslogtreecommitdiffstats
path: root/src/tools/qwaitcondition_unix.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/tools/qwaitcondition_unix.cpp
parent1740cd279522c060e738bbbffacab83355d2b794 (diff)
downloadtqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.tar.gz
tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.zip
Automated conversion from qt3
Diffstat (limited to 'src/tools/qwaitcondition_unix.cpp')
-rw-r--r--src/tools/qwaitcondition_unix.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/tools/qwaitcondition_unix.cpp b/src/tools/qwaitcondition_unix.cpp
index 2f1e5b98..2d985332 100644
--- a/src/tools/qwaitcondition_unix.cpp
+++ b/src/tools/qwaitcondition_unix.cpp
@@ -153,7 +153,7 @@ TQWaitCondition::TQWaitCondition()
#ifdef QT_CHECK_RANGE
if (ret)
- qWarning( "Wait condition init failure: %s", strerror( ret ) );
+ tqWarning( "Wait condition init failure: %s", strerror( ret ) );
#endif
}
@@ -167,7 +167,7 @@ TQWaitCondition::~TQWaitCondition()
if (ret) {
#ifdef QT_CHECK_RANGE
- qWarning( "Wait condition destroy failure: %s", strerror( ret ) );
+ tqWarning( "Wait condition destroy failure: %s", strerror( ret ) );
#endif
// seems we have threads waiting on us, lets wake them up
@@ -190,7 +190,7 @@ void TQWaitCondition::wakeOne()
#ifdef QT_CHECK_RANGE
if (ret)
- qWarning("Wait condition wakeOne failure: %s", strerror(ret));
+ tqWarning("Wait condition wakeOne failure: %s", strerror(ret));
#endif
}
@@ -207,7 +207,7 @@ void TQWaitCondition::wakeAll()
#ifdef QT_CHECK_RANGE
if (ret)
- qWarning("Wait condition wakeAll failure: %s", strerror(ret));
+ tqWarning("Wait condition wakeAll failure: %s", strerror(ret));
#endif
}
@@ -246,7 +246,7 @@ bool TQWaitCondition::wait(unsigned long time)
#ifdef QT_CHECK_RANGE
if (ret && ret != ETIMEDOUT)
- qWarning("Wait condition wait failure: %s",strerror(ret));
+ tqWarning("Wait condition wait failure: %s",strerror(ret));
#endif
pthread_mutex_unlock( &mutex );
@@ -285,7 +285,7 @@ bool TQWaitCondition::wait(TQMutex *mutex, unsigned long time)
if (mutex->d->type() == Q_MUTEX_RECURSIVE) {
#ifdef QT_CHECK_RANGE
- qWarning("Wait condition warning: using recursive mutexes with\n"
+ tqWarning("Wait condition warning: using recursive mutexes with\n"
" wait conditions is undefined!");
#endif
return FALSE;
@@ -307,7 +307,7 @@ bool TQWaitCondition::wait(TQMutex *mutex, unsigned long time)
#ifdef QT_CHECK_RANGE
if (ret && ret != ETIMEDOUT)
- qWarning("Wait condition wait failure: %s",strerror(ret));
+ tqWarning("Wait condition wait failure: %s",strerror(ret));
#endif
return (ret == 0);