QmlDesigner: Add missing return to DesignDocument::contextHelpId()

Change-Id: I51e3b08efeda4da8cd2aee84e832a5f8c110b8bb
Reviewed-by: Tim Jenssen <tim.jenssen@theqtcompany.com>
This commit is contained in:
Thomas Hartmann
2015-07-09 13:50:03 +02:00
committed by Thomas Hartmann
parent 80eb278765
commit e55119bb3a

View File

@@ -679,7 +679,7 @@ void DesignDocument::updateActiveQtVersion()
QString DesignDocument::contextHelpId() const QString DesignDocument::contextHelpId() const
{ {
if (view()) if (view())
view()->contextHelpId(); return view()->contextHelpId();
return QString(); return QString();
} }