Uploaded image for project: 'Qt Creator'
  1. Qt Creator
  2. QTCREATORBUG-3310

Incorrect navigation over overloaded functions

    XMLWordPrintable

Details

    • Bug
    • Resolution: Duplicate
    • Not Evaluated
    • None
    • Qt Creator 2.1.0-rc1
    • Editors
    • None

    Description

      In this code snippet go to definition of int A(int x) Creator successfully performs Ctrl-click navigation to B(int x), but does not navigate to A(int x, int y) - cursor stays inside A(int x)

      class C
      {
      	void B(int x)
      	{
      		std::cout << x << endl;
      	}
      
      	int A(int x, int y)
      	{
      		return x + y;
      	}
      
      	int A(int x)
      	{
      		B(x);
      		return A(x, 1);
      	}
      };
      

      Attachments

        Issue Links

          No reviews matched the request. Check your Options in the drop-down menu of this sections header.

          Activity

            People

              lindeije Thorbjørn Lindeijer (closed Nokia identity) (Inactive)
              annulen Konstantin Tokarev
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Gerrit Reviews

                  There are no open Gerrit changes