Tabifying BroDoc* sources to make consistent with general style.

This commit is contained in:
Jon Siwek 2011-03-15 16:48:51 -05:00
parent dbf2b9996e
commit 9e13d15f29
4 changed files with 399 additions and 399 deletions

View file

@ -89,8 +89,8 @@ void BroDoc::WriteDocFile() const
WriteStringList("`%s`, ", "`%s`\n", modules);
WriteToDoc(":Imports:\n");
WriteStringList(" :bro:script: `%s`\n",
" :bro:script: `%s`\n\n", imports);
WriteStringList("\t:bro:script: `%s`\n",
"\t:bro:script: `%s`\n\n", imports);
WriteSectionHeading("Notices", '-');
if ( notices )

View file

@ -198,7 +198,7 @@ protected:
/**
* @see WriteStringList(const char*, const char*,
const std::list<std::string>&>)
* const std::list<std::string>&>)
*/
void WriteStringList(const char* format,
const std::list<std::string>& l) const
@ -230,7 +230,7 @@ protected:
* Writes out a reST section heading
* @param heading The title of the heading to create
* @param underline The character to use to underline the section title
within the reST document
* within the reST document
*/
void WriteSectionHeading(const char* heading, char underline) const;
private:

View file

@ -13,8 +13,8 @@ public:
* BroDocObj constructor
* @param id a pointer to an identifier that is to be documented
* @param reST a reference to a pointer of a list of strings that
represent the reST documentation for the ID. The pointer
will be set to 0 after this constructor finishes.
* represent the reST documentation for the ID. The pointer
* will be set to 0 after this constructor finishes.
* @param is_fake whether the ID* is a dummy just for doc purposes
*/
BroDocObj(const ID* id, std::list<std::string>*& reST,