summaryrefslogtreecommitdiffstats
path: root/doc/man
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man')
-rw-r--r--doc/man/man3/tqftp.3qt8
-rw-r--r--doc/man/man3/tqguardedptr.3qt2
-rw-r--r--doc/man/man3/tqhttp.3qt8
-rw-r--r--doc/man/man3/tqxmlreader.3qt2
4 files changed, 10 insertions, 10 deletions
diff --git a/doc/man/man3/tqftp.3qt b/doc/man/man3/tqftp.3qt
index b8e9f9d0f..cdbeb8689 100644
--- a/doc/man/man3/tqftp.3qt
+++ b/doc/man/man3/tqftp.3qt
@@ -361,13 +361,13 @@ Destructor.
.SH "void QFtp::abort ()\fC [slot]\fR"
Aborts the current command and deletes all scheduled commands.
.PP
-If there is an unfinished command (i.e. a command for which the commandStarted() signal has been emitted, but for which the commandFinished() signal has not been emitted), this function sends an \fCABORT\fR command to the server. When the server replies that the command is aborted, the commandFinished() signal with the \fCerror\fR argument set to \fCTRUE\fR is emitted for the command. Due to timing issues, it is possible that the command had already finished before the abort request reached the server, in which case, the commandFinished() signal is emitted with the \fCerror\fR argument set to \fCFALSE\fR.
+If there is an unfinished command (i.e. a command for which the commandStarted() signal has been emitted, but for which the commandFinished() signal has not been emitted), this function sends an \fCABORT\fR command to the server. When the server replies that the command is aborted, the commandFinished() signal with the \fCerror\fR argument set to \fCtrue\fR is emitted for the command. Due to timing issues, it is possible that the command had already finished before the abort request reached the server, in which case, the commandFinished() signal is emitted with the \fCerror\fR argument set to \fCfalse\fR.
.PP
For all other commands that are affected by the abort(), no signals are emitted.
.PP
If you don't start further FTP commands directly after the abort(), there won't be any scheduled commands and the done() signal is emitted.
.PP
-\fBWarning:\fR Some FTP servers, for example the BSD FTP daemon (version 0.3), wrongly return a positive reply even when an abort has occurred. For these servers the commandFinished() signal has its error flag set to \fCFALSE\fR, even though the command did not complete successfully.
+\fBWarning:\fR Some FTP servers, for example the BSD FTP daemon (version 0.3), wrongly return a positive reply even when an abort has occurred. For these servers the commandFinished() signal has its error flag set to \fCfalse\fR, even though the command did not complete successfully.
.PP
See also clearPendingCommands().
.PP
@@ -461,11 +461,11 @@ See also commandFinished(), error(), and errorString().
.PP
Example: network/ftpclient/ftpmainwindow.ui.h.
.SH "Error QFtp::error () const"
-Returns the last error that occurred. This is useful to find out what when wrong when receiving a commandFinished() or a done() signal with the \fCerror\fR argument set to \fCTRUE\fR.
+Returns the last error that occurred. This is useful to find out what when wrong when receiving a commandFinished() or a done() signal with the \fCerror\fR argument set to \fCtrue\fR.
.PP
If you start a new command, the error status is reset to NoError.
.SH "TQString QFtp::errorString () const"
-Returns a human-readable description of the last error that occurred. This is useful for presenting a error message to the user when receiving a commandFinished() or a done() signal with the \fCerror\fR argument set to \fCTRUE\fR.
+Returns a human-readable description of the last error that occurred. This is useful for presenting a error message to the user when receiving a commandFinished() or a done() signal with the \fCerror\fR argument set to \fCtrue\fR.
.PP
The error string is often (but not always) the reply from the server, so it is not always possible to translate the string. If the message comes from Qt, the string has already passed through tr().
.PP
diff --git a/doc/man/man3/tqguardedptr.3qt b/doc/man/man3/tqguardedptr.3qt
index c76376125..369ed6ff3 100644
--- a/doc/man/man3/tqguardedptr.3qt
+++ b/doc/man/man3/tqguardedptr.3qt
@@ -102,7 +102,7 @@ Copy one guarded pointer from another. The constructed guarded pointer points to
.SH "QGuardedPtr::~QGuardedPtr ()"
Destroys the guarded pointer. Just like a normal pointer, destroying a guarded pointer does \fInot\fR destroy the object being pointed to.
.SH "bool QGuardedPtr::isNull () const"
-Returns \fCTRUE\fR if the referenced object has been destroyed or if there is no referenced object; otherwise returns false.
+Returns \fCtrue\fR if the referenced object has been destroyed or if there is no referenced object; otherwise returns false.
.SH "QGuardedPtr::operator T * () const"
Cast operator; implements pointer semantics. Because of this function you can pass a QGuardedPtr<X> to a function where an X* is required.
.SH "bool QGuardedPtr::operator!= ( const QGuardedPtr<T> & p ) const"
diff --git a/doc/man/man3/tqhttp.3qt b/doc/man/man3/tqhttp.3qt
index 6cae32a36..5db234811 100644
--- a/doc/man/man3/tqhttp.3qt
+++ b/doc/man/man3/tqhttp.3qt
@@ -326,9 +326,9 @@ Destroys the QHttp object. If there is an open connection, it is closed.
.SH "void QHttp::abort ()\fC [slot]\fR"
Aborts the current request and deletes all scheduled requests.
.PP
-For the current request, the requestFinished() signal with the \fCerror\fR argument \fCTRUE\fR is emitted. For all other requests that are affected by the abort(), no signals are emitted.
+For the current request, the requestFinished() signal with the \fCerror\fR argument \fCtrue\fR is emitted. For all other requests that are affected by the abort(), no signals are emitted.
.PP
-Since this slot also deletes the scheduled requests, there are no requests left and the done() signal is emitted (with the \fCerror\fR argument \fCTRUE\fR).
+Since this slot also deletes the scheduled requests, there are no requests left and the done() signal is emitted (with the \fCerror\fR argument \fCtrue\fR).
.PP
See also clearPendingRequests().
.SH "TQ_ULONG QHttp::bytesAvailable () const"
@@ -392,11 +392,11 @@ This signal is emitted when the last pending request has finished; (it is emitte
.PP
See also requestFinished(), error(), and errorString().
.SH "Error QHttp::error () const"
-Returns the last error that occurred. This is useful to find out what happened when receiving a requestFinished() or a done() signal with the \fCerror\fR argument \fCTRUE\fR.
+Returns the last error that occurred. This is useful to find out what happened when receiving a requestFinished() or a done() signal with the \fCerror\fR argument \fCtrue\fR.
.PP
If you start a new request, the error status is reset to NoError.
.SH "TQString QHttp::errorString () const"
-Returns a human-readable description of the last error that occurred. This is useful to present a error message to the user when receiving a requestFinished() or a done() signal with the \fCerror\fR argument \fCTRUE\fR.
+Returns a human-readable description of the last error that occurred. This is useful to present a error message to the user when receiving a requestFinished() or a done() signal with the \fCerror\fR argument \fCtrue\fR.
.SH "int QHttp::get ( const TQString & path, TQIODevice * to = 0 )"
Sends a get request for \fIpath\fR to the server set by setHost() or as specified in the constructor.
.PP
diff --git a/doc/man/man3/tqxmlreader.3qt b/doc/man/man3/tqxmlreader.3qt
index 69c65586a..d8c174941 100644
--- a/doc/man/man3/tqxmlreader.3qt
+++ b/doc/man/man3/tqxmlreader.3qt
@@ -120,7 +120,7 @@ If \fIok\fR is not 0: \fI*ok\fR is set to true if the reader has the feature cal
.PP
See also setFeature() and hasFeature().
.SH "bool QXmlReader::hasFeature ( const TQString & name ) const\fC [pure virtual]\fR"
-Returns \fCTRUE\fR if the reader has the feature called \fIname\fR; otherwise returns false.
+Returns \fCtrue\fR if the reader has the feature called \fIname\fR; otherwise returns false.
.PP
See also feature() and setFeature().
.SH "bool QXmlReader::hasProperty ( const TQString & name ) const\fC [pure virtual]\fR"