diff options
author | Michele Calgaro <[email protected]> | 2024-09-09 14:57:42 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-09-12 18:58:18 +0900 |
commit | 6f57abfc9cd3acf1d648aee696947ac9216adb71 (patch) | |
tree | 4ae374b1ce01d388bca2249c5d903d79a6cb814f /doc/html/sound-example.html | |
parent | 0582c90a9ed4b965629267713f51c0da7c38b39d (diff) | |
download | tqt3-6f57abfc9cd3acf1d648aee696947ac9216adb71.tar.gz tqt3-6f57abfc9cd3acf1d648aee696947ac9216adb71.zip |
Rename remaining ntq[s-z]* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/html/sound-example.html')
-rw-r--r-- | doc/html/sound-example.html | 14 |
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 <<a href="tqmainwindow-h.html">tqmainwindow.h</a>> 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(); } |