Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Qt Creator and other tools
  4. QtCreator after upgrade does not complete function arguments

QtCreator after upgrade does not complete function arguments

Scheduled Pinned Locked Moved Solved Qt Creator and other tools
3 Posts 2 Posters 529 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Offline
    M Offline
    Marek
    wrote on last edited by
    #1

    Hi
    After last upgrade QtCreator which is now 4.7.0 does not complete what I type in many places:

    1. I have function defined in .h eg showMore(int param,int param,QString param) so when I write in cpp:
      void MyClass::showMore( - now arguments used to show up, I hit enter and I have:
      void myClass:showMore(int param,int param,QString param)
      This does not work any more, I need to type in arguments

    2. When I'm creating signal connection
      connect(myClass,SIGNAL(showMoreSig - now complete definition used to show up, hit enter
      connect(myClass,SIGNAL(showMoreSig(int,int,QString))
      this also does not work

    Knows someone how to bring it back ?

    Thanks in advance
    Marek

    1 Reply Last reply
    0
    • sierdzioS Offline
      sierdzioS Offline
      sierdzio
      Moderators
      wrote on last edited by
      #2

      Disable clang code model in Help->Plugins, that will bring back the old code model for you.

      But also - consider using modern connection syntax instead of SIGNAL and SLOT macros. They are error prone.

      (Z(:^

      M 1 Reply Last reply
      3
      • sierdzioS sierdzio

        Disable clang code model in Help->Plugins, that will bring back the old code model for you.

        But also - consider using modern connection syntax instead of SIGNAL and SLOT macros. They are error prone.

        M Offline
        M Offline
        Marek
        wrote on last edited by
        #3

        @sierdzio excellent ;)
        It kind of looked like in XCode. IMHO Qt Creator syntax completion is better.

        Thanks
        Marek

        1 Reply Last reply
        0

        • Login

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • Users
        • Groups
        • Search
        • Get Qt Extensions
        • Unsolved