TONY: Change "it's" to "its" in comments where appropriate. (I think.)

This commit is contained in:
Torbjörn Andersson 2012-05-19 11:05:57 +02:00
parent 8457c1c768
commit 827454a87e
5 changed files with 9 additions and 9 deletions

View File

@ -2277,7 +2277,7 @@ void RMTextItemName::DoFrame(CORO_PARAM, RMGfxTargetBuffer &bigBuf, RMLocation &
itemName = "";
// If there an item, get it's name
// If there an item, get its name
if (m_item != NULL)
m_item->GetName(itemName);

View File

@ -536,7 +536,7 @@ public:
/**
* Destination buffer which manages it's own internal list of tasks
* Destination buffer which manages its own internal list of tasks
*/
class RMGfxTargetBuffer : public virtual RMGfxBuffer {
private:

View File

@ -77,7 +77,7 @@ static bool CompareCommands(struct command *cmd1, struct command *cmd2) {
/**
* Parses a script from the MPC file, and inserts it's data into a structure
* Parses a script from the MPC file, and inserts its data into a structure
*
* @param lpBuf Buffer containing the compiled script.
* @param lpmsScript Pointer to a structure that will be filled with the
@ -138,7 +138,7 @@ static const byte *ParseScript(const byte *lpBuf, LPMPALSCRIPT lpmsScript) {
/**
* Parses a dialog from the MPC file, and inserts it's data into a structure
* Parses a dialog from the MPC file, and inserts its data into a structure
*
* @param lpBuf Buffer containing the compiled dialog.
* @param lpmdDialog Pointer to a structure that will be filled with the
@ -303,7 +303,7 @@ static const byte *ParseDialog(const byte *lpBuf, LPMPALDIALOG lpmdDialog) {
/**
* Parses an item from the MPC file, and inserts it's data into a structure
* Parses an item from the MPC file, and inserts its data into a structure
*
* @param lpBuf Buffer containing the compiled dialog.
* @param lpmiItem Pointer to a structure that will be filled with the
@ -425,7 +425,7 @@ static const byte *ParseItem(const byte *lpBuf, LPMPALITEM lpmiItem) {
/**
* Parses a location from the MPC file, and inserts it's data into a structure
* Parses a location from the MPC file, and inserts its data into a structure
*
* @param lpBuf Buffer containing the compiled location.
* @param lpmiLocation Pointer to a structure that will be filled with the

View File

@ -91,7 +91,7 @@ MemoryItem &MemoryManager::allocate(uint32 size, uint flags) {
}
/**
* Allocates a new memory block and returns it's data pointer
* Allocates a new memory block and returns its data pointer
* @returns Data pointer to allocated block
*/
HGLOBAL MemoryManager::alloc(uint32 size, uint flags) {
@ -123,7 +123,7 @@ MemoryItem &MemoryManager::operator[](HGLOBAL handle) {
}
/**
* Returns a size of a memory block given it's pointer
* Returns a size of a memory block given its pointer
*/
uint32 MemoryManager::getSize(HGLOBAL handle) {
MemoryItem &item = getItem(handle);

View File

@ -1312,7 +1312,7 @@ void DoChoice(CORO_PARAM, uint32 nChoice) {
* @param dwParam Any parameter for the action.
* @returns Id of the process that was launched to perform the action, or
* CORO_INVALID_PID_VALUE if the action was not defined, or the item was inactive.
* @remarks You can get the index of an item from it's number by using
* @remarks You can get the index of an item from its number by using
* the itemGetOrderFromNum() function. The items list must first be locked
* by calling LockItem().
*/