Zdenek Jonak 9 years ago
commit 046c64b312

@ -24,7 +24,6 @@ class AutoForm : public IForm
{
public:
explicit AutoForm(QWidget *parent = 0) : IForm(parent) {
m_newRec = false;
m_serviceConnected = false;
m_saved = false;
}
@ -73,7 +72,6 @@ private:
QList<QWidget*> m_bindWidgets;
QList<IValidator*> m_validators;
QHash<QComboBox*, QList<ComboData> > m_bindCombos;
bool m_newRec;
void bindToUi() {
registerCombos();

@ -2,6 +2,7 @@
IForm::IForm(QWidget *parent) : QWidget(parent)
{
m_newRec = false;
}
IForm::~IForm()
@ -19,7 +20,10 @@ void IForm::setPluginId(const QString &pluginId)
}
void IForm::refresh()
{
if (!m_newRec)
{
emit refreshEntity();
}
}

@ -29,6 +29,9 @@ public slots:
private:
QString m_pluginId;
protected:
bool m_newRec;
};
#endif // IFORM_H

Loading…
Cancel
Save