Hello
Loving the create from usage feature but I can't quite get it to work.
Using 10.5.1738.0 built 2009.10.01
In the header file I have...#ifndef __TEST_H
#define __TEST_H
typedef struct
{
BOOL plop;
}Test, *pTest;
#endif
In the source file I have...Test t;
t.newElement = Layout_FindElement();
If I right click newElement and Create From Usage it asks me to create a new member. I click ok but don't get any other options and it whacks it at the bottom of the header file rather than in the structure definition. Like so...
#ifndef __TEST_H
#define __TEST_H
typedef struct
{
BOOL plop;
}Test, *pTest;
#endif
pLayoutItem newElement;
If that could work I'd be the happiest coder!