The QApplication constructor accepts (int argc, char ** argv) to handle any Qt command line arguments.
What if my application is in unicode? And do I have wchar_t ** argv?
It seems a bit silly to create a char * copy of all the command line arguments to pass to the library, which itself is unicode.
source
share