Make the DelegateType class a QObject

We're not instantiating it, so it doesn't really cause a significant overhead. This silences a warning about invalid type names
This commit is contained in:
Tobias Fella
2023-09-23 11:46:32 +02:00
parent 4ed4f3f628
commit eaa2b55702

View File

@@ -10,9 +10,9 @@
* *
* This class is designed to define the DelegateType enumeration. * This class is designed to define the DelegateType enumeration.
*/ */
class DelegateType class DelegateType : public QObject
{ {
Q_GADGET Q_OBJECT
public: public:
/** /**