From eb6b9c98c867c5a42a62758e9743b4d8a5e21baf Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Mon, 7 May 2012 15:44:17 +0200 Subject: [PATCH] Compile fix Change-Id: Ie0bf0937f3d24eddbb31a7b3598529acc4c073cd Reviewed-by: Daniel Teske --- src/plugins/texteditor/basetextmark.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/texteditor/basetextmark.cpp b/src/plugins/texteditor/basetextmark.cpp index 21b5f4cfe38..8b5a90fa399 100644 --- a/src/plugins/texteditor/basetextmark.cpp +++ b/src/plugins/texteditor/basetextmark.cpp @@ -148,7 +148,7 @@ BaseTextMark::~BaseTextMark() // oha we are deleted bool b = Internal::TextEditorPlugin::instance()->baseTextMarkRegistry()->remove(this); // If you get a assertion in this line, init() was never called - QTC_CHECK(b) + QTC_CHECK(b); } void BaseTextMark::updateFileName(const QString &fileName)