forked from qt-creator/qt-creator
Fixes: Warning on MSVC, no not temporary convert to int.
RevBy: Matthias
This commit is contained in:
@@ -3370,9 +3370,9 @@ void BaseTextEditor::setIfdefedOutBlocks(const QList<BaseTextEditor::BlockRange>
|
|||||||
const BlockRange &range = blocks.at(rangeNumber);
|
const BlockRange &range = blocks.at(rangeNumber);
|
||||||
|
|
||||||
if (block.position() >= range.first && (block.position() <= range.last || !range.last)) {
|
if (block.position() >= range.first && (block.position() <= range.last || !range.last)) {
|
||||||
needUpdate += TextEditDocumentLayout::setIfdefedOut(block);
|
needUpdate |= TextEditDocumentLayout::setIfdefedOut(block);
|
||||||
} else {
|
} else {
|
||||||
needUpdate += TextEditDocumentLayout::clearIfdefedOut(block);
|
needUpdate |= TextEditDocumentLayout::clearIfdefedOut(block);
|
||||||
}
|
}
|
||||||
if (block.contains(range.last))
|
if (block.contains(range.last))
|
||||||
++rangeNumber;
|
++rangeNumber;
|
||||||
|
|||||||
Reference in New Issue
Block a user