Hi,

I have a QStringList that's declared under "private" of my subclass declaration.
I can do all the manipulations with this QStringList in the function where it was created but not in any other function (and these other functions are in the same subclass as the QStringList, and they are all public functions).

Why do I have this problem with the scope? Is there anything special about making a certain QStringList available to all functins within the same sublass?
Thanks.