diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-14 21:07:15 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-14 21:07:15 -0600 |
commit | f072772a092e289b7bfa5d0f8c5996334bf0799e (patch) | |
tree | 53ace576d26b2223003a44a183762553b5f2bb8a /src/gvcore | |
parent | 79a556634a727f011420aa3ace6adde37f84f5f5 (diff) | |
download | gwenview-f072772a092e289b7bfa5d0f8c5996334bf0799e.tar.gz gwenview-f072772a092e289b7bfa5d0f8c5996334bf0799e.zip |
Update various qt function definitions and static methods for tqt3
Diffstat (limited to 'src/gvcore')
-rw-r--r-- | src/gvcore/qxcfi.h | 4 |
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; |