2024-10-20 18:21:03 +13:00
|
|
|
#include <QPropertyProxyBindingData>
|
|
|
|
#include <QUntypedPropertyData>
|
|
|
|
#include <qpropertyprivate.h>
|
|
|
|
#include "gen_qpropertyprivate.h"
|
2024-12-11 19:55:47 +13:00
|
|
|
|
2025-01-07 11:30:33 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
2024-12-11 19:55:47 +13:00
|
|
|
#endif
|
2024-10-20 18:21:03 +13:00
|
|
|
|
2024-11-19 19:29:06 +13:00
|
|
|
void QUntypedPropertyData_Delete(QUntypedPropertyData* self, bool isSubclass) {
|
|
|
|
if (isSubclass) {
|
|
|
|
delete dynamic_cast<QUntypedPropertyData*>( self );
|
|
|
|
} else {
|
|
|
|
delete self;
|
|
|
|
}
|
2024-10-20 18:21:03 +13:00
|
|
|
}
|
|
|
|
|
2024-11-19 19:29:06 +13:00
|
|
|
void QPropertyProxyBindingData_Delete(QPropertyProxyBindingData* self, bool isSubclass) {
|
|
|
|
if (isSubclass) {
|
|
|
|
delete dynamic_cast<QPropertyProxyBindingData*>( self );
|
|
|
|
} else {
|
|
|
|
delete self;
|
|
|
|
}
|
2024-10-20 18:21:03 +13:00
|
|
|
}
|
|
|
|
|