diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:11:59 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:11:59 -0600 |
commit | 9a75b154bf0732aa3a501b6e31e566e06c5f8a31 (patch) | |
tree | df1e10cc7504665622d096f9ba80dc9e56f3afb8 /src/tools/qwaitcondition_unix.cpp | |
parent | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (diff) | |
download | qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.tar.gz qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.zip |
Undo prior accidental commit
Diffstat (limited to 'src/tools/qwaitcondition_unix.cpp')
-rw-r--r-- | src/tools/qwaitcondition_unix.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/tools/qwaitcondition_unix.cpp b/src/tools/qwaitcondition_unix.cpp index 58c8106..5c3c23c 100644 --- a/src/tools/qwaitcondition_unix.cpp +++ b/src/tools/qwaitcondition_unix.cpp @@ -153,7 +153,7 @@ QWaitCondition::QWaitCondition() #ifdef QT_CHECK_RANGE if (ret) - tqWarning( "Wait condition init failure: %s", strerror( ret ) ); + qWarning( "Wait condition init failure: %s", strerror( ret ) ); #endif } @@ -167,7 +167,7 @@ QWaitCondition::~QWaitCondition() if (ret) { #ifdef QT_CHECK_RANGE - tqWarning( "Wait condition destroy failure: %s", strerror( ret ) ); + qWarning( "Wait condition destroy failure: %s", strerror( ret ) ); #endif // seems we have threads waiting on us, lets wake them up @@ -190,7 +190,7 @@ void QWaitCondition::wakeOne() #ifdef QT_CHECK_RANGE if (ret) - tqWarning("Wait condition wakeOne failure: %s", strerror(ret)); + qWarning("Wait condition wakeOne failure: %s", strerror(ret)); #endif } @@ -207,7 +207,7 @@ void QWaitCondition::wakeAll() #ifdef QT_CHECK_RANGE if (ret) - tqWarning("Wait condition wakeAll failure: %s", strerror(ret)); + qWarning("Wait condition wakeAll failure: %s", strerror(ret)); #endif } @@ -246,7 +246,7 @@ bool QWaitCondition::wait(unsigned long time) #ifdef QT_CHECK_RANGE if (ret && ret != ETIMEDOUT) - tqWarning("Wait condition wait failure: %s",strerror(ret)); + qWarning("Wait condition wait failure: %s",strerror(ret)); #endif pthread_mutex_unlock( &mutex ); @@ -285,7 +285,7 @@ bool QWaitCondition::wait(QMutex *mutex, unsigned long time) if (mutex->d->type() == Q_MUTEX_RECURSIVE) { #ifdef QT_CHECK_RANGE - tqWarning("Wait condition warning: using recursive mutexes with\n" + qWarning("Wait condition warning: using recursive mutexes with\n" " wait conditions is undefined!"); #endif return FALSE; @@ -307,7 +307,7 @@ bool QWaitCondition::wait(QMutex *mutex, unsigned long time) #ifdef QT_CHECK_RANGE if (ret && ret != ETIMEDOUT) - tqWarning("Wait condition wait failure: %s",strerror(ret)); + qWarning("Wait condition wait failure: %s",strerror(ret)); #endif return (ret == 0); |