Skip to content

Commit 7e20a51

Browse files
committed
- Add missing semicolon.
1 parent a0f63d1 commit 7e20a51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

OMEdit/OMEditLIB/Annotations/BitmapAnnotation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ void BitmapAnnotation::drawAnnotation(QPainter *painter)
203203
QRectF target(centerPoint.x(), centerPoint.y(), image.width(), image.height());
204204

205205
#if QT_VERSION >= QT_VERSION_CHECK(6, 9, 0)
206-
painter->drawImage(target, mImage.flipped())
206+
painter->drawImage(target, mImage.flipped());
207207
#else
208208
painter->drawImage(target, mImage.mirrored());
209209
#endif

0 commit comments

Comments
 (0)