refactor(diagram editor) : remove unused code

This commit is contained in:
joshua
2025-10-20 23:02:52 +02:00
parent e26f7fdaaa
commit 67a7d277f4
2 changed files with 1 additions and 6 deletions

View File

@@ -33,9 +33,7 @@ SlaveElement::SlaveElement(const ElementsLocation &location,
QGraphicsItem *qgi,
int *state) :
Element(location, qgi, state, Element::Slave)
{
m_xref_item = nullptr;
}
{}
/**
@brief SlaveElement::~SlaveElement

View File

@@ -33,9 +33,6 @@ class SlaveElement : public Element
void linkToElement(Element *elmt) override;
void unlinkAllElements() override;
void unlinkElement(Element *elmt) override;
private:
QGraphicsTextItem *m_xref_item;
};
#endif // SLAVEELEMENT_H