diff options
Diffstat (limited to 'src/tools/qucom_p.h')
-rw-r--r-- | src/tools/qucom_p.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/qucom_p.h b/src/tools/qucom_p.h index 0814e18d7..f4f7ea81b 100644 --- a/src/tools/qucom_p.h +++ b/src/tools/qucom_p.h @@ -127,7 +127,7 @@ extern Q_EXPORT TQUType_Null static_QUType_Null; struct Q_EXPORT TQUObject { public: // scary MSVC bug makes this necessary - TQUObject() : type( &static_QUType_Null ) {} + TQUObject() : type( &static_QUType_Null ), isLastObject(false) {} ~TQUObject() { type->clear( this ); } TQUType *type; @@ -184,6 +184,8 @@ public: // scary MSVC bug makes this necessary } payload; + TQUObject* deepCopy(TQUObject*); + bool isLastObject; }; |