summaryrefslogtreecommitdiffstats
path: root/src/gvcore/qxcfi.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gvcore/qxcfi.h')
-rw-r--r--src/gvcore/qxcfi.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gvcore/qxcfi.h b/src/gvcore/qxcfi.h
index 570ee53..031c008 100644
--- a/src/gvcore/qxcfi.h
+++ b/src/gvcore/qxcfi.h
@@ -69,7 +69,7 @@ public:
return *this;
}
value = new char[len];
- Q_CHECK_PTR( value );
+ TQ_CHECK_PTR( value );
if ( !value ) {
mFailed=true;
return *this;
@@ -83,7 +83,7 @@ public:
*this >> len;
if (mFailed) return *this;
data=new char[len];
- Q_CHECK_PTR( data );
+ TQ_CHECK_PTR( data );
if ( !data ) {
mFailed=true;
return *this;