Hi,

I made a custom designer plugin, which has a vector that holds various states.
But at design time (in designer) only the first element of the vector needs to be initilized.
Now, the Q_PROPERTY() macro needs a delcleration of a variable type and the variable name that holds the property (as far as I know), which forces me to declare an extra variable to receive the property value from designer, and then asign that variable in to the vector.
My question is, is there a way to assign the a value from the Q_PROPERTY() macro on to the vector without a intermidiate variable?

Thanks in advance.