qt: fix include error

This commit is contained in:
Jussi Kuokkanen 2020-06-21 19:25:28 +03:00
parent 3eb247c3a0
commit 96f09ff7ed

View File

@ -4,7 +4,7 @@
#include <DeviceModel.hpp> #include <DeviceModel.hpp>
#include <DeviceProxyModel.hpp> #include <DeviceProxyModel.hpp>
#include <FlagEditor.hpp> #include <FlagEditor.hpp>
#include <FunctionEditor.hpp> //#include <FunctionEditor.hpp>
#include <QDebug> #include <QDebug>
#include <QGridLayout> #include <QGridLayout>
#include <QLabel> #include <QLabel>
@ -47,8 +47,8 @@ public:
&DeviceModel::applyChanges); &DeviceModel::applyChanges);
m_treeView->functionEditorRequested.connect([this] { m_treeView->functionEditorRequested.connect([this] {
auto f_editor = new FunctionEditor(m_deviceModel); //auto f_editor = new FunctionEditor(m_deviceModel);
f_editor->show(); //f_editor->show();
}); });
m_flagEditor->setFlags(DeviceModel::AllInterfaces); m_flagEditor->setFlags(DeviceModel::AllInterfaces);