aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/designercore/exceptions/exception.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/qmldesigner/designercore/exceptions/exception.cpp')
-rw-r--r--src/plugins/qmldesigner/designercore/exceptions/exception.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/plugins/qmldesigner/designercore/exceptions/exception.cpp b/src/plugins/qmldesigner/designercore/exceptions/exception.cpp
index 486e5bec2b..6610638748 100644
--- a/src/plugins/qmldesigner/designercore/exceptions/exception.cpp
+++ b/src/plugins/qmldesigner/designercore/exceptions/exception.cpp
@@ -34,8 +34,8 @@
#include <QCoreApplication>
-#include <coreplugin/messagebox.h>
#ifndef QMLDESIGNER_TEST
+#include <coreplugin/messagebox.h>
#include <qmldesignerplugin.h>
#endif
@@ -160,8 +160,12 @@ QString Exception::description() const
*/
void Exception::showException(const QString &title) const
{
- QString composedTitle = title.isEmpty() ? QCoreApplication::translate("QmlDesigner", "Error") : title;
+ Q_UNUSED(title)
+#ifndef QMLDESIGNER_TEST
+ QString composedTitle = title.isEmpty() ? QCoreApplication::translate("QmlDesigner", "Error")
+ : title;
Core::AsynchronousMessageBox::warning(composedTitle, description());
+#endif
}
/*!