Overview
Comment: | Fix typo \end -> \endcond |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
c4b99eb54986f8a3b46cc966ba65cc22 |
User & Date: | florob@babelmonkeys.de on 2012-02-03 15:35:39 |
Other Links: | manifest | tags |
Context
2012-02-03
| ||
15:37 | Hide undocumented classes again (oops) check-in: 1046e63df3 user: florob@babelmonkeys.de tags: trunk | |
15:35 | Fix typo \end -> \endcond check-in: c4b99eb549 user: florob@babelmonkeys.de tags: trunk | |
15:20 | More documentation improvements. check-in: cdb78d79ac user: js tags: trunk | |
Changes
Modified Doxyfile from [ed269b881b] to [98e6a35687].
1 2 3 4 5 6 | PROJECT_NAME = "ObjXMPP" OUTPUT_DIRECTORY = docs/ INPUT = src FILE_PATTERNS = *.h *.m HTML_OUTPUT = . GENERATE_LATEX = NO | | | 1 2 3 4 5 6 7 8 9 | PROJECT_NAME = "ObjXMPP" OUTPUT_DIRECTORY = docs/ INPUT = src FILE_PATTERNS = *.h *.m HTML_OUTPUT = . GENERATE_LATEX = NO HIDE_UNDOC_CLASSES = NO PREDEFINED = OF_HAVE_PROPERTIES IGNORE_PREFIX = XMPP |
Modified src/XMPPExceptions.h from [3a47c0db95] to [acdec39767].
︙ | ︙ | |||
28 29 30 31 32 33 34 | /** * \brief A base class for XMPP related exceptions */ @interface XMPPException: OFException { /// \cond internal XMPPConnection *connection; | | | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | /** * \brief A base class for XMPP related exceptions */ @interface XMPPException: OFException { /// \cond internal XMPPConnection *connection; /// \endcond } #ifdef OF_HAVE_PROPERTIES /// \brief The connection the exception relates to @property (readonly, assign) XMPPConnection *connection; #endif |
︙ | ︙ |