style(channels): fix some small indentation errors

This commit is contained in:
Matt Broadstone 2016-03-28 09:00:52 -04:00
parent c72e8543f6
commit 79f5c4187c
2 changed files with 10 additions and 10 deletions

View File

@ -31,10 +31,10 @@ QAmqpExchangePrivate::QAmqpExchangePrivate(QAmqpExchange *q)
void QAmqpExchangePrivate::resetInternalState() void QAmqpExchangePrivate::resetInternalState()
{ {
QAmqpChannelPrivate::resetInternalState(); QAmqpChannelPrivate::resetInternalState();
delayedDeclare = false; delayedDeclare = false;
declared = false; declared = false;
nextDeliveryTag = 0; nextDeliveryTag = 0;
} }
void QAmqpExchangePrivate::declare() void QAmqpExchangePrivate::declare()

View File

@ -34,12 +34,12 @@ QAmqpQueuePrivate::~QAmqpQueuePrivate()
void QAmqpQueuePrivate::resetInternalState() void QAmqpQueuePrivate::resetInternalState()
{ {
QAmqpChannelPrivate::resetInternalState(); QAmqpChannelPrivate::resetInternalState();
delayedDeclare = false; delayedDeclare = false;
declared = false; declared = false;
recievingMessage = false; recievingMessage = false;
consuming = false; consuming = false;
consumeRequested = false; consumeRequested = false;
} }
bool QAmqpQueuePrivate::_q_method(const QAmqpMethodFrame &frame) bool QAmqpQueuePrivate::_q_method(const QAmqpMethodFrame &frame)