diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-10-30 20:57:53 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-10-30 20:57:53 (GMT) |
commit | c6d6555a949e86be5c859311eb4db5dcc092c258 (patch) | |
tree | dd06bd100b0bd88b6ee40c8464efac800a749c32 /src/outputgen.h | |
parent | 7c34dd2b1594925d0a012e9ba290bf9c80574db5 (diff) | |
download | Doxygen-c6d6555a949e86be5c859311eb4db5dcc092c258.zip Doxygen-c6d6555a949e86be5c859311eb4db5dcc092c258.tar.gz Doxygen-c6d6555a949e86be5c859311eb4db5dcc092c258.tar.bz2 |
Release-1.2.18-20021030
Diffstat (limited to 'src/outputgen.h')
-rw-r--r-- | src/outputgen.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/outputgen.h b/src/outputgen.h index b82c0af..f25bd8b 100644 --- a/src/outputgen.h +++ b/src/outputgen.h @@ -90,17 +90,17 @@ class BaseOutputDocInterface : public BaseCodeDocInterface const QCString &,bool) {} virtual void parseText(const QCString &) {} - /*! Start of a bullet list: e.g. \c <ul> in html. writeListItem() is + /*! Start of a bullet list: e.g. \c \<ul\> in html. writeListItem() is * Used for the bullet items. */ virtual void startItemList() = 0; /*! Writes a list item for a bullet or enumerated - * list: e.g. \c <li> in html + * list: e.g. \c \<li\> in html */ virtual void writeListItem() = 0; - /*! Ends a bullet list: e.g. \c </ul> in html */ + /*! Ends a bullet list: e.g. \c \</ul\> in html */ virtual void endItemList() = 0; /*! Writes an ASCII string to the output. Converts characters that have @@ -184,19 +184,19 @@ class BaseOutputDocInterface : public BaseCodeDocInterface /*! Writes a horizontal ruler to the output */ virtual void writeRuler() = 0; - /*! Starts a description list: e.g. \c <dl> in HTML + /*! Starts a description list: e.g. \c \<dl\> in HTML * Items are surrounded by startDescItem() and endDescItem() */ virtual void startDescription() = 0; - /*! Ends a description list: e.g. \c </dl> in HTML */ + /*! Ends a description list: e.g. \c \</dl\> in HTML */ virtual void endDescription() = 0; - /*! Starts an item of a description list: e.g. \c <dt> in HTML. */ + /*! Starts an item of a description list: e.g. \c \<dt\> in HTML. */ virtual void startDescItem() = 0; /*! Ends an item of a description list and starts the - * description itself: e.g. \c <dd> in HTML. + * description itself: e.g. \c \<dd\> in HTML. */ virtual void endDescItem() = 0; |