error: converting to execution character set: Invalid or incomplete multibyte or wide character m_pClearButton->setToolTip(QStringLiteral("����")); ^
时间: 2024-01-31 15:02:58 浏览: 212
小程序报错: Uncaught TypeError: Converting circular structure to JSON
5星 · 资源好评率100%
这个错误提示是由于编码问题引起的,可能是您的代码中使用了非 ASCII 字符。您可以尝试在代码文件的开头添加以下语句解决该问题:
```c++
#include <QtCore/QTextCodec>
QTextCodec *codec = QTextCodec::codecForName("UTF-8");
QTextCodec::setCodecForLocale(codec);
```
这个语句会将编码设置为 UTF-8,适用于大多数情况。如果您的代码文件使用的是其他编码,可以将 "UTF-8" 替换为相应的编码名称。
阅读全文