macOS fix: add explicit QGraphicsLayoutItem include in helpercell.h

MOC on macOS does not resolve QGraphicsLayoutItem through the bulk
QtWidgets include, causing an 'Undefined interface' error at build time.
Adding an explicit include resolves this. Linux builds are unaffected. Thanks hairykiwi 8ef4e04
This commit is contained in:
Laurent Trinques
2026-07-06 14:45:58 +02:00
committed by GitHub
parent 6dca56f823
commit 82cd4d359a
+1 -1
View File
@@ -20,7 +20,7 @@
#include "../qet.h" #include "../qet.h"
#include <QtWidgets> #include <QtWidgets>
#include <QGraphicsLayoutItem>
/** /**
This class implements a helper widget for cells that indicate the length of This class implements a helper widget for cells that indicate the length of
columns and rows. columns and rows.