summaryrefslogtreecommitdiffstats
path: root/doc/html/quuid-h.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/quuid-h.html')
-rw-r--r--doc/html/quuid-h.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/quuid-h.html b/doc/html/quuid-h.html
index 71a19fbd8..39d8257ac 100644
--- a/doc/html/quuid-h.html
+++ b/doc/html/quuid-h.html
@@ -156,13 +156,13 @@ struct TQ_EXPORT TQUuid
uint i;
if ( data1 != orig.data1 || data2 != orig.data2 ||
data3 != orig.data3 )
- return FALSE;
+ return false;
for( i = 0; i < 8; i++ )
if ( data4[i] != orig.data4[i] )
- return FALSE;
+ return false;
- return TRUE;
+ return true;
}
bool operator!=(const TQUuid &orig ) const
@@ -198,13 +198,13 @@ struct TQ_EXPORT TQUuid
uint i;
if ( data1 != guid.Data1 || data2 != guid.Data2 ||
data3 != guid.Data3 )
- return FALSE;
+ return false;
for( i = 0; i < 8; i++ )
if ( data4[i] != guid.Data4[i] )
- return FALSE;
+ return false;
- return TRUE;
+ return true;
}
bool operator!=( const GUID &guid ) const