Hi guys,

I wanted to convert uint to QString. i.e.
for example-

uint i=123;
QString converted;

I want to convert the unsigned integer number 123 to string literal "123". I did it using QVariant class but my application aborts runtime. Plz guide.