summaryrefslogtreecommitdiffstats
path: root/examples/multimedia/spectrum
diff options
context:
space:
mode:
authorSze Howe Koh <szehowe.koh@gmail.com>2013-01-27 12:25:02 +0800
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-01-29 01:28:50 +0100
commit28ee5b12ff800ff25dd646730011f2d8d4ad9699 (patch)
tree978cd519ccf38fe74301c69529a29b7200b97cf8 /examples/multimedia/spectrum
parent52ad3219f073b87cfc1c57ced77266e3e7fad7ee (diff)
Doc: Fix module name format
Follow the conventions at http://qt-project.org/wiki/Spelling_Module_Names_in_Qt_Documentation QtMultimedia -> Qt Multimedia (Also, QtMultimediaKit has been merged into Qt Multimedia in Qt 5) Change-Id: I3c23435d5eceb946ea320756b835da937726db24 Reviewed-by: Laszlo Papp <lpapp@kde.org> Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'examples/multimedia/spectrum')
-rw-r--r--examples/multimedia/spectrum/README.txt4
-rw-r--r--examples/multimedia/spectrum/app/engine.h2
-rw-r--r--examples/multimedia/spectrum/app/main.cpp2
-rw-r--r--examples/multimedia/spectrum/doc/src/spectrum.qdoc2
4 files changed, 5 insertions, 5 deletions
diff --git a/examples/multimedia/spectrum/README.txt b/examples/multimedia/spectrum/README.txt
index c39d4a709..b4f3b982a 100644
--- a/examples/multimedia/spectrum/README.txt
+++ b/examples/multimedia/spectrum/README.txt
@@ -4,7 +4,7 @@ Spectrum analyser demo app
Introduction
------------
-This application is a demo which uses the QtMultimedia APIs to capture and play back PCM audio. While either recording or playback is ongoing, the application performs real-time level and frequency spectrum analysis, displaying the results in its main window.
+This application is a demo which uses the Qt Multimedia APIs to capture and play back PCM audio. While either recording or playback is ongoing, the application performs real-time level and frequency spectrum analysis, displaying the results in its main window.
Acknowledgments
@@ -96,7 +96,7 @@ If you don't like the combination of the waveform and progress bar in a single w
The spectrum.h file defines a number of parameters which can be played with. These control things such as the number of audio samples analysed per FFT calculation, the range and number of bands displayed by the spectrograph, and so on.
-The part of the application which interacts with QtMultimedia is in the Engine class.
+The part of the application which interacts with Qt Multimedia is in the Engine class.
Some ideas for enhancements to the app are listed in TODO.txt. Feel free to start work on any of them :)
diff --git a/examples/multimedia/spectrum/app/engine.h b/examples/multimedia/spectrum/app/engine.h
index 7508c0e6a..014492869 100644
--- a/examples/multimedia/spectrum/app/engine.h
+++ b/examples/multimedia/spectrum/app/engine.h
@@ -68,7 +68,7 @@ class QAudioOutput;
QT_END_NAMESPACE
/**
- * This class interfaces with the QtMultimedia audio classes, and also with
+ * This class interfaces with the Qt Multimedia audio classes, and also with
* the SpectrumAnalyser class. Its role is to manage the capture and playback
* of audio data, meanwhile performing real-time analysis of the audio level
* and frequency spectrum.
diff --git a/examples/multimedia/spectrum/app/main.cpp b/examples/multimedia/spectrum/app/main.cpp
index a4bc76b5d..adb2b604c 100644
--- a/examples/multimedia/spectrum/app/main.cpp
+++ b/examples/multimedia/spectrum/app/main.cpp
@@ -44,7 +44,7 @@
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
- app.setApplicationName("QtMultimedia spectrum analyzer");
+ app.setApplicationName("Qt Multimedia spectrum analyzer");
MainWidget w;
w.show();
diff --git a/examples/multimedia/spectrum/doc/src/spectrum.qdoc b/examples/multimedia/spectrum/doc/src/spectrum.qdoc
index 9760ac392..4c9ce60e8 100644
--- a/examples/multimedia/spectrum/doc/src/spectrum.qdoc
+++ b/examples/multimedia/spectrum/doc/src/spectrum.qdoc
@@ -36,7 +36,7 @@
\image spectrum-demo.png
- Because QtMultimedia allows the application to access the raw audio
+ Because Qt Multimedia allows the application to access the raw audio
stream, the data can either be inspected or modified by the application.
The Spectrum Analyzer example displays three pieces of information while
audio is being either captured or played back: