diff options
Diffstat (limited to 'doc/man/man3/tqlibrary.3qt')
-rw-r--r-- | doc/man/man3/tqlibrary.3qt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man/man3/tqlibrary.3qt b/doc/man/man3/tqlibrary.3qt index 143cf39e4..85cebe9fd 100644 --- a/doc/man/man3/tqlibrary.3qt +++ b/doc/man/man3/tqlibrary.3qt @@ -113,15 +113,15 @@ See also load(), unload(), and setAutoUnload(). .SH "TQLibrary::~TQLibrary ()\fC [virtual]\fR" Deletes the TQLibrary object. .PP -The library will be unloaded if autoUnload() is TRUE (the default), otherwise it stays in memory until the application exits. +The library will be unloaded if autoUnload() is true (the default), otherwise it stays in memory until the application exits. .PP See also unload() and setAutoUnload(). .SH "bool TQLibrary::autoUnload () const" -Returns TRUE if the library will be automatically unloaded when this wrapper object is destructed; otherwise returns FALSE. The default is TRUE. +Returns true if the library will be automatically unloaded when this wrapper object is destructed; otherwise returns false. The default is true. .PP See also setAutoUnload(). .SH "bool TQLibrary::isLoaded () const" -Returns TRUE if the library is loaded; otherwise returns FALSE. +Returns true if the library is loaded; otherwise returns false. .PP See also unload(). .SH "TQString TQLibrary::library () const" @@ -223,7 +223,7 @@ This function is useful only if you want to resolve a single symbol, e.g. a func .br static FunctionType *ptrFunction = 0; .br - static bool triedResolve = FALSE; + static bool triedResolve = false; .br if ( !ptrFunction && !triedResolve ) .br @@ -244,11 +244,11 @@ If you want to resolve multiple symbols, use a TQLibrary object and call the non .PP See also .SH "void TQLibrary::setAutoUnload ( bool enabled )" -If \fIenabled\fR is TRUE (the default), the wrapper object is set to automatically unload the library upon destruction. If \fIenabled\fR is FALSE, the wrapper object is not unloaded unless you explicitly call unload(). +If \fIenabled\fR is true (the default), the wrapper object is set to automatically unload the library upon destruction. If \fIenabled\fR is false, the wrapper object is not unloaded unless you explicitly call unload(). .PP See also autoUnload(). .SH "bool TQLibrary::unload ()\fC [virtual]\fR" -Unloads the library and returns TRUE if the library could be unloaded; otherwise returns FALSE. +Unloads the library and returns true if the library could be unloaded; otherwise returns false. .PP This function is called by the destructor if autoUnload() is enabled. .PP |