From f141b156d51a3b8fe4cc7906eaae15b3f2864d84 Mon Sep 17 00:00:00 2001 From: w12x Date: Sat, 18 Oct 2008 03:52:30 -0500 Subject: [svn] Fixed a typo in QueryResult.h. Patch provided by Paradox. --HG-- branch : trunk --- src/shared/Database/QueryResult.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/shared/Database/QueryResult.h') 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; -- cgit v1.2.3