forked from mirror/openmw-tes3mp
Fix some doxygen typos
This commit is contained in:
parent
77388fe2ce
commit
fd59a4a79e
9 changed files with 10 additions and 10 deletions
|
@ -212,7 +212,7 @@ namespace CSMWorld
|
||||||
bool hasEnums (ColumnId column);
|
bool hasEnums (ColumnId column);
|
||||||
|
|
||||||
std::vector<std::string> getEnums (ColumnId column);
|
std::vector<std::string> 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.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -73,9 +73,9 @@ namespace CSVWorld
|
||||||
~CommandDelegateFactoryCollection();
|
~CommandDelegateFactoryCollection();
|
||||||
|
|
||||||
void add (CSMWorld::ColumnBase::Display display, CommandDelegateFactory *factory);
|
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,
|
CommandDelegate *makeDelegate (CSMWorld::ColumnBase::Display display, QUndoStack& undoStack,
|
||||||
QObject *parent) const;
|
QObject *parent) const;
|
||||||
|
|
|
@ -107,7 +107,7 @@ namespace MWWorld
|
||||||
const LocalRotation& getLocalRotation();
|
const LocalRotation& getLocalRotation();
|
||||||
|
|
||||||
void setCustomData (CustomData *data);
|
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.
|
/// transferred to this.
|
||||||
|
|
||||||
CustomData *getCustomData();
|
CustomData *getCustomData();
|
||||||
|
|
|
@ -52,7 +52,7 @@ namespace Compiler
|
||||||
Literals& literals);
|
Literals& literals);
|
||||||
|
|
||||||
void appendCode (std::vector<Interpreter::Type_Code>& code) const;
|
void appendCode (std::vector<Interpreter::Type_Code>& code) const;
|
||||||
///< store generated code in \æ code.
|
///< store generated code in \a code.
|
||||||
|
|
||||||
virtual bool parseName (const std::string& name, const TokenLoc& loc,
|
virtual bool parseName (const std::string& name, const TokenLoc& loc,
|
||||||
Scanner& scanner);
|
Scanner& scanner);
|
||||||
|
|
|
@ -105,7 +105,7 @@ namespace Compiler
|
||||||
///< Append code for function to \a code.
|
///< Append code for function to \a code.
|
||||||
|
|
||||||
void listKeywords (std::vector<std::string>& keywords) const;
|
void listKeywords (std::vector<std::string>& keywords) const;
|
||||||
///< Append all known keywords to \æ kaywords.
|
///< Append all known keywords to \a kaywords.
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@ namespace Compiler
|
||||||
///< Return script name.
|
///< Return script name.
|
||||||
|
|
||||||
void getCode (std::vector<Interpreter::Type_Code>& code) const;
|
void getCode (std::vector<Interpreter::Type_Code>& code) const;
|
||||||
///< store generated code in \æ code.
|
///< store generated code in \a code.
|
||||||
|
|
||||||
const Locals& getLocals() const;
|
const Locals& getLocals() const;
|
||||||
///< get local variable declarations.
|
///< get local variable declarations.
|
||||||
|
|
|
@ -22,7 +22,7 @@ namespace Compiler
|
||||||
Output (Locals& locals);
|
Output (Locals& locals);
|
||||||
|
|
||||||
void getCode (std::vector<Interpreter::Type_Code>& code) const;
|
void getCode (std::vector<Interpreter::Type_Code>& code) const;
|
||||||
///< store generated code in \æ code.
|
///< store generated code in \a code.
|
||||||
|
|
||||||
const Literals& getLiterals() const;
|
const Literals& getLiterals() const;
|
||||||
|
|
||||||
|
|
|
@ -119,7 +119,7 @@ namespace Compiler
|
||||||
///< put back a keyword token
|
///< put back a keyword token
|
||||||
|
|
||||||
void listKeywords (std::vector<std::string>& keywords);
|
void listKeywords (std::vector<std::string>& keywords);
|
||||||
///< Append all known keywords to \æ kaywords.
|
///< Append all known keywords to \a kaywords.
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@ namespace Compiler
|
||||||
bool end = false);
|
bool end = false);
|
||||||
|
|
||||||
void getCode (std::vector<Interpreter::Type_Code>& code) const;
|
void getCode (std::vector<Interpreter::Type_Code>& code) const;
|
||||||
///< store generated code in \æ code.
|
///< store generated code in \a code.
|
||||||
|
|
||||||
virtual bool parseName (const std::string& name, const TokenLoc& loc,
|
virtual bool parseName (const std::string& name, const TokenLoc& loc,
|
||||||
Scanner& scanner);
|
Scanner& scanner);
|
||||||
|
|
Loading…
Reference in a new issue