From fd59a4a79e7142c8167f0c47386ee29a6cdf0563 Mon Sep 17 00:00:00 2001 From: scrawl Date: Sun, 15 Jun 2014 15:58:01 +0200 Subject: [PATCH] Fix some doxygen typos --- apps/opencs/model/world/columns.hpp | 2 +- apps/opencs/view/world/util.hpp | 4 ++-- apps/openmw/mwworld/refdata.hpp | 2 +- components/compiler/controlparser.hpp | 2 +- components/compiler/extensions.hpp | 2 +- components/compiler/fileparser.hpp | 2 +- components/compiler/output.hpp | 2 +- components/compiler/scanner.hpp | 2 +- components/compiler/scriptparser.hpp | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/apps/opencs/model/world/columns.hpp b/apps/opencs/model/world/columns.hpp index 855e89cad..1dba99b89 100644 --- a/apps/opencs/model/world/columns.hpp +++ b/apps/opencs/model/world/columns.hpp @@ -212,7 +212,7 @@ namespace CSMWorld bool hasEnums (ColumnId column); std::vector getEnums (ColumnId column); - ///< Returns an empty vector, if \æ column isn't an enum type column. + ///< Returns an empty vector, if \a column isn't an enum type column. } } diff --git a/apps/opencs/view/world/util.hpp b/apps/opencs/view/world/util.hpp index 1c7e37818..c95a24982 100644 --- a/apps/opencs/view/world/util.hpp +++ b/apps/opencs/view/world/util.hpp @@ -73,9 +73,9 @@ namespace CSVWorld ~CommandDelegateFactoryCollection(); void add (CSMWorld::ColumnBase::Display display, CommandDelegateFactory *factory); - ///< The ownership of \æ factory is transferred to *this. + ///< The ownership of \a factory is transferred to *this. /// - /// This function must not be called more than once per value of \æ display. + /// This function must not be called more than once per value of \a display. CommandDelegate *makeDelegate (CSMWorld::ColumnBase::Display display, QUndoStack& undoStack, QObject *parent) const; diff --git a/apps/openmw/mwworld/refdata.hpp b/apps/openmw/mwworld/refdata.hpp index fcd1437c9..753230e7f 100644 --- a/apps/openmw/mwworld/refdata.hpp +++ b/apps/openmw/mwworld/refdata.hpp @@ -107,7 +107,7 @@ namespace MWWorld const LocalRotation& getLocalRotation(); void setCustomData (CustomData *data); - ///< Set custom data (potentially replacing old custom data). The ownership of \æ data is + ///< Set custom data (potentially replacing old custom data). The ownership of \a data is /// transferred to this. CustomData *getCustomData(); diff --git a/components/compiler/controlparser.hpp b/components/compiler/controlparser.hpp index 1175a0ed5..59958fd90 100644 --- a/components/compiler/controlparser.hpp +++ b/components/compiler/controlparser.hpp @@ -52,7 +52,7 @@ namespace Compiler Literals& literals); void appendCode (std::vector& code) const; - ///< store generated code in \æ code. + ///< store generated code in \a code. virtual bool parseName (const std::string& name, const TokenLoc& loc, Scanner& scanner); diff --git a/components/compiler/extensions.hpp b/components/compiler/extensions.hpp index 3f91ca357..418cbb402 100644 --- a/components/compiler/extensions.hpp +++ b/components/compiler/extensions.hpp @@ -105,7 +105,7 @@ namespace Compiler ///< Append code for function to \a code. void listKeywords (std::vector& keywords) const; - ///< Append all known keywords to \æ kaywords. + ///< Append all known keywords to \a kaywords. }; } diff --git a/components/compiler/fileparser.hpp b/components/compiler/fileparser.hpp index 13c7fb537..00f96cff0 100644 --- a/components/compiler/fileparser.hpp +++ b/components/compiler/fileparser.hpp @@ -31,7 +31,7 @@ namespace Compiler ///< Return script name. void getCode (std::vector& code) const; - ///< store generated code in \æ code. + ///< store generated code in \a code. const Locals& getLocals() const; ///< get local variable declarations. diff --git a/components/compiler/output.hpp b/components/compiler/output.hpp index 37b88cee9..c544fb715 100644 --- a/components/compiler/output.hpp +++ b/components/compiler/output.hpp @@ -22,7 +22,7 @@ namespace Compiler Output (Locals& locals); void getCode (std::vector& code) const; - ///< store generated code in \æ code. + ///< store generated code in \a code. const Literals& getLiterals() const; diff --git a/components/compiler/scanner.hpp b/components/compiler/scanner.hpp index 19f4ca96a..344ae0582 100644 --- a/components/compiler/scanner.hpp +++ b/components/compiler/scanner.hpp @@ -119,7 +119,7 @@ namespace Compiler ///< put back a keyword token void listKeywords (std::vector& keywords); - ///< Append all known keywords to \æ kaywords. + ///< Append all known keywords to \a kaywords. }; } diff --git a/components/compiler/scriptparser.hpp b/components/compiler/scriptparser.hpp index 000244c79..edabb9c5c 100644 --- a/components/compiler/scriptparser.hpp +++ b/components/compiler/scriptparser.hpp @@ -27,7 +27,7 @@ namespace Compiler bool end = false); void getCode (std::vector& code) const; - ///< store generated code in \æ code. + ///< store generated code in \a code. virtual bool parseName (const std::string& name, const TokenLoc& loc, Scanner& scanner);