QDBusPendingCallPrivate: save 8 bytes on 64-bit archs

Moved waitingForFinished out from between two large-type variables to
save eight bytes per QDBusPendingCallPrivate on 64bit platforms.

Many a mickle makes a muckle.

Change-Id: I5612ad8bb907c6770be0245e667bdb2add30d38b
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
Marc Mutz 2012-08-24 11:00:07 +02:00 committed by Qt by Nokia
parent 9d4d0708ec
commit d7e29682b5

View File

@ -96,10 +96,9 @@ public:
QDBusPendingCallWatcherHelper *watcherHelper;
QDBusMessage replyMessage;
DBusPendingCall *pending;
bool waitingForFinished;
QString expectedReplySignature;
int expectedReplyCount;
bool waitingForFinished;
// }
QDBusPendingCallPrivate(const QDBusMessage &sent, QDBusConnectionPrivate *connection)