implementation classes don't inherit from UI classes

This commit is contained in:
wmayer
2020-01-12 01:09:25 +01:00
committed by wwmayer
parent f97eb7026d
commit 5673d299f9
6 changed files with 233 additions and 16 deletions

View File

@@ -26,6 +26,7 @@
#endif
#include "DlgPartBoxImp.h"
#include "ui_DlgPartBox.h"
using namespace PartGui;
@@ -37,7 +38,7 @@ using namespace PartGui;
* true to construct a modal dialog.
*/
DlgPartBoxImp::DlgPartBoxImp(QWidget* parent, Qt::WindowFlags fl)
: Gui::LocationDialogUi<Ui_DlgPartBox>(parent, fl)
: Gui::LocationDialogUiImp(new Ui_DlgPartBox, parent, fl)
{
}