Changeset 54

Show
Ignore:
Timestamp:
11/19/08 13:29:41 (17 years ago)
Author:
yumileroy
Message:

[svn] Fixed a typo in QueryResult?.h. Patch provided by Paradox.

Original author: w12x
Date: 2008-10-18 03:52:30-05:00

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/shared/Database/QueryResult.h

    r44 r54  
    3636        uint32 GetField_idx(const std::string &name) const 
    3737        { 
    38             for(FieldNames::const_iterator iter = GetFiedNames().begin(); iter != GetFiedNames().end(); ++iter) 
     38            for(FieldNames::const_iterator iter = GetFieldNames().begin(); iter != GetFieldNames().end(); ++iter) 
    3939            { 
    4040                if(iter->second == name) 
     
    5656        uint32 GetFieldCount() const { return mFieldCount; } 
    5757        uint64 GetRowCount() const { return mRowCount; } 
    58         FieldNames const& GetFiedNames() const {return mFieldNames; } 
     58        FieldNames const& GetFieldNames() const {return mFieldNames; } 
    5959 
    6060    protected: