Export FormWindowEditor from the designer plugin.

The Qt4ProjectManagerPlugin needs that for the dynamic ui completion.

Reviewed-By: Friedemann Kleint <Friedemann.Kleint@nokia.com>
This commit is contained in:
dt
2009-05-12 13:47:49 +02:00
parent 5c9916478f
commit 9c9b38e92a
3 changed files with 15 additions and 2 deletions

View File

@@ -356,3 +356,10 @@ QString FormWindowEditor::contextHelpId() const
return className;
#endif
}
QString FormWindowEditor::contents() const
{
if (m_host && m_host->formWindow())
return m_host->formWindow()->contents();
return QString::null;
}