I am experiencing a new problem with QtCreator. I am unable to
set the content of STL containers when debugging if these are
define using typdef. For example, With something like:

std::vector<int> myVector,

I am able to see its content with no problems. However, with:

typdef std::vector<int> tVector;
tVector myVector;

It doesn't work. It's not able to show the content. It's like it
wouldn't have the debugging helper on.

This wouldn't be a big issue, but all my code has typedef.
I tried with the last official version and with the nightly build,
but the problem persists.

Do you know if this is a known issue? does this catalogs as
a bug?

Thanks.