summaryrefslogtreecommitdiffstats
path: root/src/gui/image
diff options
context:
space:
mode:
authorMarius Storm-Olsen <marius.storm-olsen@nokia.com>2012-05-10 13:10:23 +0200
committerQt by Nokia <qt-info@nokia.com>2012-05-11 01:42:02 +0200
commitad97aba452ed7d3dbd3c9d437c59c14b2ae0661b (patch)
tree2a37426bc8e29f27d3b3a486693b484b2caa069c /src/gui/image
parent87d21127de4a361c7e76ba91a0ea336bbed32853 (diff)
Doc: Fix \sa usage
Ensure comma between elements (757 missing), single space and curly- braces around title elements, etc. Change-Id: Id16c3fda7fc47a12a0682f8720214f4990609a97 Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com> Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
Diffstat (limited to 'src/gui/image')
-rw-r--r--src/gui/image/qbitmap.cpp2
-rw-r--r--src/gui/image/qpicture.cpp22
2 files changed, 12 insertions, 12 deletions
diff --git a/src/gui/image/qbitmap.cpp b/src/gui/image/qbitmap.cpp
index 499f9f48f2..837e5d0cd8 100644
--- a/src/gui/image/qbitmap.cpp
+++ b/src/gui/image/qbitmap.cpp
@@ -90,7 +90,7 @@ QT_BEGIN_NAMESPACE
implicit data sharing. For more information, see the \l {Implicit
Data Sharing} documentation.
- \sa QPixmap, QImage, QImageReader, QImageWriter
+ \sa QPixmap, QImage, QImageReader, QImageWriter
*/
/*! \typedef QBitmap::DataPtr
diff --git a/src/gui/image/qpicture.cpp b/src/gui/image/qpicture.cpp
index 34ca077e5b..dde039f554 100644
--- a/src/gui/image/qpicture.cpp
+++ b/src/gui/image/qpicture.cpp
@@ -1189,7 +1189,7 @@ QT_END_INCLUDE_NAMESPACE
fileName, or 0 if the file cannot be read or if the format is not
recognized.
- \sa load() save()
+ \sa load(), save()
*/
const char* QPicture::pictureFormat(const QString &fileName)
@@ -1203,7 +1203,7 @@ const char* QPicture::pictureFormat(const QString &fileName)
Returns a list of picture formats that are supported for picture
input.
- \sa outputFormats() inputFormatList() QPictureIO
+ \sa outputFormats(), inputFormatList(), QPictureIO
*/
QList<QByteArray> QPicture::inputFormats()
{
@@ -1228,7 +1228,7 @@ static QStringList qToStringList(const QList<QByteArray> arr)
over a copy, e.g.
\snippet picture/picture.cpp 2
- \sa outputFormatList() inputFormats() QPictureIO
+ \sa outputFormatList(), inputFormats(), QPictureIO
*/
QStringList QPicture::inputFormatList()
{
@@ -1246,7 +1246,7 @@ QStringList QPicture::inputFormatList()
over a copy, e.g.
\snippet picture/picture.cpp 3
- \sa inputFormatList() outputFormats() QPictureIO
+ \sa inputFormatList(), outputFormats(), QPictureIO
*/
QStringList QPicture::outputFormatList()
{
@@ -1259,7 +1259,7 @@ QStringList QPicture::outputFormatList()
Returns a list of picture formats that are supported for picture
output.
- \sa inputFormats() outputFormatList() QPictureIO
+ \sa inputFormats(), outputFormatList(), QPictureIO
*/
QList<QByteArray> QPicture::outputFormats()
{
@@ -1288,7 +1288,7 @@ QList<QByteArray> QPicture::outputFormats()
You don't normally need to use this class; QPicture::load(),
QPicture::save().
- \sa QPicture QPixmap QFile
+ \sa QPicture, QPixmap, QFile
*/
struct QPictureIOData
@@ -1581,7 +1581,7 @@ void QPictureIO::setStatus(int status)
reading it. If a format is set the picture will only be read if it
has that format.
- \sa read() write() format()
+ \sa read(), write(), format()
*/
void QPictureIO::setFormat(const char *format)
{
@@ -1619,7 +1619,7 @@ void QPictureIO::setFileName(const QString &fileName)
Returns the quality of the written picture, related to the
compression ratio.
- \sa setQuality() QPicture::save()
+ \sa setQuality(), QPicture::save()
*/
int QPictureIO::quality() const
{
@@ -1634,7 +1634,7 @@ int QPictureIO::quality() const
compressed files, 100 for large uncompressed files. (-1 signifies
the default compression.)
- \sa quality() QPicture::save()
+ \sa quality(), QPicture::save()
*/
void QPictureIO::setQuality(int q)
@@ -1841,7 +1841,7 @@ QList<QByteArray> QPictureIO::outputFormats()
\snippet picture/picture.cpp 4
- \sa setIODevice() setFileName() setFormat() write() QPixmap::load()
+ \sa setIODevice(), setFileName(), setFormat(), write(), QPixmap::load()
*/
bool QPictureIO::read()
{
@@ -1910,7 +1910,7 @@ bool QPictureIO::read()
Example:
\snippet picture/picture.cpp 5
- \sa setIODevice() setFileName() setFormat() read() QPixmap::save()
+ \sa setIODevice(), setFileName(), setFormat(), read(), QPixmap::save()
*/
bool QPictureIO::write()
{