| 12345678910111213141516 |
- #include "CmQtEditorWidget.h"
- namespace CamelotEditor
- {
- QtEditorWidget::QtEditorWidget(QWidget* parent, const QString& name, const QString& title)
- :QWidget(parent), mName(name), mTitle(title)
- {
- }
- void QtEditorWidget::closeWidget()
- {
- onClosed(this);
- destroy();
- }
- }
|