amin-ahmadi.com
How to Convert QString to Wide C String (wchar_t *) - Amin
The same as standard C String, for this also you can go through standard C++ as shown below: Let’s say you have a QString, like this: First convert it to std::wstring and then use its c_str method, like this:
Amin