forked from qt-creator/qt-creator
Avoid warning on empty expressions
For some reason, Q_UNUSED includes already a semicolon, adding one on the user side creates an additional empty statement. Change-Id: I9c5e8fac381345a60792cb75e2938fd53958d3b0 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -393,7 +393,7 @@ void TextEditorOverlay::fillSelection(QPainter *painter,
|
||||
|
||||
void TextEditorOverlay::paint(QPainter *painter, const QRect &clip)
|
||||
{
|
||||
Q_UNUSED(clip);
|
||||
Q_UNUSED(clip)
|
||||
for (int i = m_selections.size()-1; i >= 0; --i) {
|
||||
const OverlaySelection &selection = m_selections.at(i);
|
||||
if (selection.m_dropShadow)
|
||||
@@ -420,7 +420,7 @@ void TextEditorOverlay::paint(QPainter *painter, const QRect &clip)
|
||||
|
||||
void TextEditorOverlay::fill(QPainter *painter, const QColor &color, const QRect &clip)
|
||||
{
|
||||
Q_UNUSED(clip);
|
||||
Q_UNUSED(clip)
|
||||
for (int i = m_selections.size()-1; i >= 0; --i) {
|
||||
const OverlaySelection &selection = m_selections.at(i);
|
||||
if (selection.m_dropShadow)
|
||||
|
||||
Reference in New Issue
Block a user