InteliSense ahead ??
-
I find InteliSense very helpful, BUT...
I am trying to build connect and AFTER InteliSense l me add my sender - it intimately compllains.So
is my entry wrong and if so why it is "suggested " ?PLEASE
no (stupid) replies such as "nobody is perfect " save your time... -
C Christian Ehrlicher moved this topic from General and Desktop on
-
I find InteliSense very helpful, BUT...
I am trying to build connect and AFTER InteliSense l me add my sender - it intimately compllains.So
is my entry wrong and if so why it is "suggested " ?PLEASE
no (stupid) replies such as "nobody is perfect " save your time...@AnneRanch
Intellisense makes a suggestion, if the given argument matches one of the possible signatures of the method, in this caseQObject::connect()
.
Ifm_mdiarea
was a pointer to aQMdiArea
, intellisense would offer you to select from 3 possible signatures to follow.
There are two possible causes to arrive at the error message shown to you.
a)m_mdiarea
isn't a pointer.
b) You have hit the comma and the following space for too long.Why your entry is "suggested", is probably autocompletion of a variable. As usual, you hide the most important information: What is
m_mdiarea
. Usually your problems are at the spots that you refuse to show.