Ignore:
Timestamp:
May 5, 2011, 5:36:53 AM (14 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/tools/porting/src/semantic.cpp

    r651 r846  
    22**
    33** Copyright (C) 2001-2004 Roberto Raggi
    4 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
     4** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
    55** All rights reserved.
    66** Contact: Nokia Corporation (qt-info@nokia.com)
     
    769769{
    770770    // If this is a classSpecifier or a EnumSpecifier we skip the name lookup,
    771     // becuase looking up the name "E" in a class definition like
     771    // because looking up the name "E" in a class definition like
    772772    // "class E { ..." makes no sense. (There might be a variable named E
    773773    // already declared, but that variable is now shadowed by the class type.)
     
    807807
    808808/*
    809     looks up name used in basescope. If name->isGlobal() is true or if classOrNamespaceList()
    810     returns a non-emty list, the C++ qualified name lookup rules are used. Otherwise the
     809    Looks up name used in basescope. If name->isGlobal() is true or if classOrNamespaceList()
     810    returns a non-empty list, the C++ qualified name lookup rules are used. Otherwise the
    811811    unquialified name lookup rules are used.  Returns the a list of members that was found,
    812     In most cases this list will contain zero or one element, exept in the case of overloaded functions.
     812    In most cases this list will contain zero or one element, except in the case of overloaded functions.
    813813    TODO: Argument-dependent name lookup
    814814*/
     
    976976FunctionMember *Semantic::selectFunction(QList<CodeModel::Member*> candidatateList, const DeclaratorAST *functionDeclarator)
    977977{
    978     // get arguments for funciton we are looking for
     978    // get arguments for function we are looking for
    979979    FunctionMember testFunction;
    980980    parseFunctionArguments(functionDeclarator, &testFunction);
Note: See TracChangeset for help on using the changeset viewer.