diff options
author | MattV <[email protected]> | 2009-03-06 15:51:22 +1000 |
---|---|---|
committer | MattV <[email protected]> | 2009-03-06 15:51:22 +1000 |
commit | 322d1cc62a73dfaa61ee822ef4adcaa8e17d65dd (patch) | |
tree | 979fdbc43a4acfc9467b1aeb00f6c1f9a47f0861 | |
parent | 675c3a9df9ca113a34152da554ed60b17f17becd (diff) |
Documentation fixes.
-rw-r--r-- | doc/src/qtopiamail_qmfutil.qdoc | 4 | ||||
-rw-r--r-- | src/libraries/qmfutil/qmailcomposer.cpp | 4 | ||||
-rw-r--r-- | src/libraries/qmfutil/qmailviewer.cpp | 4 | ||||
-rw-r--r-- | src/libraries/qtopiamail/qmailmessage.cpp | 4 |
4 files changed, 6 insertions, 10 deletions
diff --git a/doc/src/qtopiamail_qmfutil.qdoc b/doc/src/qtopiamail_qmfutil.qdoc index b6b4b7e5..f1f5fd55 100644 --- a/doc/src/qtopiamail_qmfutil.qdoc +++ b/doc/src/qtopiamail_qmfutil.qdoc @@ -33,10 +33,6 @@ Although this mechanism can be accessed by applications, it is currently recomme \row \o QMailViewerFactory \o Creates objects implementing the QMailViewerInterface interface \row \o QMailComposerInterface \o Defines the interface to objects that can compose a mail message \row \o QMailViewerInterface \o Defines the interface to objects that can display a mail message -\row \o QMailComposerPlugin \o Defines a base class for implementing mail message composer plug-ins -\row \o QMailViewerPlugin \o Defines a base class for implementing mail message viewer plug-ins -\row \o QMailComposerPluginInterface \o Defines the interface to plug-ins that provide mail message composers -\row \o QMailViewerPluginInterface \o Defines the interface to plug-ins that provide mail message viewers \endtable \section1 New Message Arrival Service diff --git a/src/libraries/qmfutil/qmailcomposer.cpp b/src/libraries/qmfutil/qmailcomposer.cpp index ea4e7079..59b6a923 100644 --- a/src/libraries/qmfutil/qmailcomposer.cpp +++ b/src/libraries/qmfutil/qmailcomposer.cpp @@ -359,9 +359,9 @@ void QMailComposerInterface::setMessageType( QMailMessage::MessageType type ) The QMailComposerInterface class describes the interface supported by classes that can be created by the QMailComposerFactory class. To create a new class that can be created via the QMailComposerFactory, - implement a plug-in that derives from QMailComposerPlugin. + implement a plug-in that derives from QMailComposerInterface. - \sa QMailComposerInterface, QMailComposerPlugin + \sa QMailComposerInterface */ /*! diff --git a/src/libraries/qmfutil/qmailviewer.cpp b/src/libraries/qmfutil/qmailviewer.cpp index d6bd25f6..43aa4438 100644 --- a/src/libraries/qmfutil/qmailviewer.cpp +++ b/src/libraries/qmfutil/qmailviewer.cpp @@ -271,9 +271,9 @@ void QMailViewerInterface::setResource(const QUrl& name, QVariant value) The QMailViewerInterface class describes the interface supported by classes that can be created by the QMailViewerFactory class. To create a new class that can be created via the QMailViewerFactory, - implement a plug-in that derives from QMailViewerPlugin. + implement a plug-in that derives from QMailViewerInterface. - \sa QMailViewerInterface, QMailViewerPlugin + \sa QMailViewerInterface */ /*! diff --git a/src/libraries/qtopiamail/qmailmessage.cpp b/src/libraries/qtopiamail/qmailmessage.cpp index 22631a90..96598f0b 100644 --- a/src/libraries/qtopiamail/qmailmessage.cpp +++ b/src/libraries/qtopiamail/qmailmessage.cpp @@ -5507,10 +5507,10 @@ template class QPrivatelyImplemented<QMailMessageMetaDataPrivate>; */ /*! - \variable QMailMessageMetaData::Attachments + \variable QMailMessageMetaData::HasAttachments The status mask needed for testing the value of the registered status flag named - \c "Attachments" against the result of QMailMessage::status(). + \c "HasAttachments" against the result of QMailMessage::status(). This flag indicates that the message contains at least one sub-part with 'Attachment' disposition. |