QDBusPendingCall: remove unneeded volatile qualification

The variable waitingForFinished is only ever read under mutex protection, so
a volatile qualification isn't necessary.

Change-Id: I17ce3fbfb090c8ae5e43dd2a93e4f48810dbbff3
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
bb10
Marc Mutz 2012-08-24 11:00:07 +02:00 committed by Qt by Nokia
parent 20d7763b19
commit 9d4d0708ec
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ public:
QDBusPendingCallWatcherHelper *watcherHelper;
QDBusMessage replyMessage;
DBusPendingCall *pending;
volatile bool waitingForFinished;
bool waitingForFinished;
QString expectedReplySignature;
int expectedReplyCount;