summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqsound.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqsound.3qt')
-rw-r--r--doc/man/man3/tqsound.3qt16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/man/man3/tqsound.3qt b/doc/man/man3/tqsound.3qt
index 8a9ce98b..bbddb084 100644
--- a/doc/man/man3/tqsound.3qt
+++ b/doc/man/man3/tqsound.3qt
@@ -11,12 +11,12 @@ QSound \- Access to the platform audio facilities
.SH SYNOPSIS
\fC#include <ntqsound.h>\fR
.PP
-Inherits QObject.
+Inherits TQObject.
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQSound\fR ( const QString & filename, QObject * parent = 0, const char * name = 0 )"
+.BI "\fBQSound\fR ( const TQString & filename, TQObject * parent = 0, const char * name = 0 )"
.br
.ti -1c
.BI "\fB~QSound\fR ()"
@@ -31,7 +31,7 @@ Inherits QObject.
.BI "void \fBsetLoops\fR ( int l )"
.br
.ti -1c
-.BI "QString \fBfileName\fR () const"
+.BI "TQString \fBfileName\fR () const"
.br
.ti -1c
.BI "bool \fBisFinished\fR () const"
@@ -52,7 +52,7 @@ Inherits QObject.
.BI "bool \fBisAvailable\fR ()"
.br
.ti -1c
-.BI "void \fBplay\fR ( const QString & filename )"
+.BI "void \fBplay\fR ( const TQString & filename )"
.br
.ti -1c
.BI "bool \fBavailable\fR ()"
@@ -94,19 +94,19 @@ The availability of sound can be tested with QSound::isAvailable().
.PP
See also Multimedia Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QSound::QSound ( const QString & filename, QObject * parent = 0, const char * name = 0 )"
+.SH "QSound::QSound ( const TQString & filename, TQObject * parent = 0, const char * name = 0 )"
Constructs a QSound that can quickly play the sound in a file named \fIfilename\fR.
.PP
This may use more memory than the static \fCplay\fR function.
.PP
-The \fIparent\fR and \fIname\fR arguments (default 0) are passed on to the QObject constructor.
+The \fIparent\fR and \fIname\fR arguments (default 0) are passed on to the TQObject constructor.
.SH "QSound::~QSound ()"
Destroys the sound object. If the sound is not finished playing stop() is called on it.
.PP
See also stop() and isFinished().
.SH "bool QSound::available ()\fC [static]\fR"
Returns TRUE if sound support is available; otherwise returns FALSE.
-.SH "QString QSound::fileName () const"
+.SH "TQString QSound::fileName () const"
Returns the filename associated with the sound.
.SH "bool QSound::isAvailable ()\fC [static]\fR"
Returns TRUE if sound facilities exist on the platform; otherwise returns FALSE. An application may choose either to notify the user if sound is crucial to the application or to operate silently without bothering the user.
@@ -120,7 +120,7 @@ Returns TRUE if the sound has finished playing; otherwise returns FALSE.
Returns the number of times the sound will play.
.SH "int QSound::loopsRemaining () const"
Returns the number of times the sound will loop. This value decreases each time the sound loops.
-.SH "void QSound::play ( const QString & filename )\fC [static]\fR"
+.SH "void QSound::play ( const TQString & filename )\fC [static]\fR"
Plays the sound in a file called \fIfilename\fR.
.PP
Example: sound/sound.cpp.