diff options
author | w12x <none@none> | 2008-10-18 03:52:30 -0500 |
---|---|---|
committer | w12x <none@none> | 2008-10-18 03:52:30 -0500 |
commit | f141b156d51a3b8fe4cc7906eaae15b3f2864d84 (patch) | |
tree | b772ccfbcbc0a1b7c9d05bedeecb1d4d88ac0e4d /src/shared/Database/QueryResult.h | |
parent | bac1fb628e6c9d27f5f51e426e55d1d89920e763 (diff) |
[svn] Fixed a typo in QueryResult.h. Patch provided by Paradox.
--HG--
branch : trunk
Diffstat (limited to 'src/shared/Database/QueryResult.h')
-rw-r--r-- | src/shared/Database/QueryResult.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/Database/QueryResult.h b/src/shared/Database/QueryResult.h index d76345f5f3d..7769188bae0 100644 --- a/src/shared/Database/QueryResult.h +++ b/src/shared/Database/QueryResult.h @@ -35,7 +35,7 @@ class TRINITY_DLL_SPEC QueryResult uint32 GetField_idx(const std::string &name) const { - for(FieldNames::const_iterator iter = GetFiedNames().begin(); iter != GetFiedNames().end(); ++iter) + for(FieldNames::const_iterator iter = GetFieldNames().begin(); iter != GetFieldNames().end(); ++iter) { if(iter->second == name) return iter->first; @@ -55,7 +55,7 @@ class TRINITY_DLL_SPEC QueryResult uint32 GetFieldCount() const { return mFieldCount; } uint64 GetRowCount() const { return mRowCount; } - FieldNames const& GetFiedNames() const {return mFieldNames; } + FieldNames const& GetFieldNames() const {return mFieldNames; } protected: Field *mCurrentRow; |