summaryrefslogtreecommitdiffstats
path: root/doc/html/sound-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/sound-example.html')
-rw-r--r--doc/html/sound-example.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/sound-example.html b/doc/html/sound-example.html
index 2bf2a47de..b1dc5ef1a 100644
--- a/doc/html/sound-example.html
+++ b/doc/html/sound-example.html
@@ -49,7 +49,7 @@ if your machine is set up to play audio.
#ifndef PLAY_H
#define PLAY_H
-#include "ntqsound.h"
+#include "tqsound.h"
#include &lt;<a href="tqmainwindow-h.html">tqmainwindow.h</a>&gt;
class SoundPlayer : public <a href="tqmainwindow.html">TQMainWindow</a> {
@@ -66,8 +66,8 @@ public slots:
void doPlay1234();
private:
- <a href="ntqsound.html">TQSound</a> bucket3;
- <a href="ntqsound.html">TQSound</a> bucket4;
+ <a href="tqsound.html">TQSound</a> bucket3;
+ <a href="tqsound.html">TQSound</a> bucket4;
};
#endif
@@ -134,12 +134,12 @@ private:
void <a name="f582"></a>SoundPlayer::doPlay1()
{
-<a name="x2813"></a> TQSound::<a href="ntqsound.html#play">play</a>("sounds/1.wav");
+<a name="x2813"></a> TQSound::<a href="tqsound.html#play">play</a>("sounds/1.wav");
}
void <a name="f583"></a>SoundPlayer::doPlay2()
{
- TQSound::<a href="ntqsound.html#play">play</a>("sounds/2.wav");
+ TQSound::<a href="tqsound.html#play">play</a>("sounds/2.wav");
}
void <a name="f584"></a>SoundPlayer::doPlay3()
@@ -162,8 +162,8 @@ void <a name="f586"></a>SoundPlayer::doPlay34()
void <a name="f587"></a>SoundPlayer::doPlay1234()
{
// Some sound platforms will only play one sound at a time
- TQSound::<a href="ntqsound.html#play">play</a>("sounds/1.wav");
- TQSound::<a href="ntqsound.html#play">play</a>("sounds/2.wav");
+ TQSound::<a href="tqsound.html#play">play</a>("sounds/1.wav");
+ TQSound::<a href="tqsound.html#play">play</a>("sounds/2.wav");
bucket3.play();
bucket4.play();
}