tags:

views:

162

answers:

2

Hi can anyone help me to convert LPTSTR to QString

A: 

Use QString::fromUcs2 to convert strings.

mosg
+3  A: 

You will see in the docs that Qstring provides static function to convert from both ascii and Unicode strings:

  • QString fromAscii ( const char * ascii, int len = -1 )
  • QString fromLatin1 ( const char * chars, int len = -1 )
  • QString fromUtf8 ( const char * utf8, int len = -1 )
  • QString fromLocal8Bit ( const char * local8Bit, int len = -1 )
  • QString fromUcs2 ( const unsigned short * str )

Check whether you are using ascii or unicode and pick your poison.

fneep