应用 tr() 函数
您好,我无法将 tr()
应用于传递给函数
的字符串
。 请问你能帮忙吗?
MainWin::SetMenuBarButton (PdCount,"File", LEFT);
如何将 tr()
函数应用于字符串 File
?
Hi i'm not able to apply tr()
to strings
, which are passing to a function
.
Please can you help?
MainWin::SetMenuBarButton (PdCount,"File", LEFT);
How to apply tr()
function to string File
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这取决于该电话在哪里。如果它位于任何
QObject
之外,则需要在其前面加上QObject
前缀:Edit 以在需要
const 的函数中使用它字符*:
It depends on where that call is. If it is outside any
QObject
, you need to prefix it byQObject
:Edit to use it in a function that expect a
const char*
:它只是一个接受字符串的函数。一个简单的谷歌搜索可能会有所帮助。
tr("文件")
its just a function that takes the string. a simple google search could help.
tr("FILE")