forked from qt-creator/qt-creator
Purge out include files in exported headers
This commit is contained in:
@@ -58,6 +58,7 @@
|
||||
#include <QtCore/QTemporaryFile>
|
||||
#include <QtCore/QDebug>
|
||||
#include <QtGui/QToolBar>
|
||||
#include <QtGui/QDockWidget>
|
||||
|
||||
using namespace Designer::Internal;
|
||||
using namespace Designer::Constants;
|
||||
@@ -384,3 +385,18 @@ QString FormWindowEditor::contents() const
|
||||
*/
|
||||
return m_formWindow->contents();
|
||||
}
|
||||
|
||||
QDockWidget* const* FormWindowEditor::dockWidgets() const
|
||||
{
|
||||
return m_editorWidget->dockWidgets();
|
||||
}
|
||||
|
||||
bool FormWindowEditor::isLocked() const
|
||||
{
|
||||
return m_editorWidget->isLocked();
|
||||
}
|
||||
|
||||
void FormWindowEditor::setLocked(bool locked)
|
||||
{
|
||||
m_editorWidget->setLocked(locked);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user