Conversion of std::wstring to QString throws linker error

前端 未结 7 2007
一生所求
一生所求 2020-12-17 15:25

Hi I need to convert a std::wstring to QString and I tried the most obvious way of

std::wstring wideString;
QString qtString = QStri         


        
相关标签:
7条回答
  • 2020-12-17 16:12

    The QtCore library is not being linked into your application. Check your project settings and make sure that QtCore4.lib is in the list of included libraries and that the paths are properly set up to find it.

    0 讨论(0)
提交回复
热议问题