Hello,
Maybe it is unrelated but the variable 'a' is not a pointer, so using '->' on it is not legal - maybe try with '.' (a dot).
On Thu, 4 Oct 2012 05:15:10 -0700 (PDT) Sebastien Berthiaume a1800bert@yahoo.com wrote:
HI Lex,
thanks for the quick response.
Your example is almost as it, the only difference, and I don't know if it matters but my structure definition is as follow
IN FILE toto.h typedef struct { int blah; int foo; }myStruct_t;
IN FILE toto.c #include "toto.h"
void TestFct(void) { myStruct_t a;
a-> (here I would expect to see blah and foo being suggested by Geany) }
For the platform I'm on Linux Ubuntu 10.04 and using Geany 1.22
Thanks in advance