mirror of
https://github.com/barry-ran/QtScrcpy.git
synced 2025-04-20 03:25:02 +00:00
fix: chinese error code
This commit is contained in:
parent
231591eeb5
commit
e2c2563c16
1 changed files with 6 additions and 2 deletions
|
@ -98,8 +98,12 @@ int main(int argc, char *argv[])
|
|||
g_mainDlg->setWindowTitle(Config::getInstance().getTitle());
|
||||
g_mainDlg->show();
|
||||
|
||||
qInfo() << QObject::tr("This software is completely open source and free. Strictly used for illegal purposes, or at your own risk. You can download it at the "
|
||||
"following address:").toUtf8();
|
||||
qInfo(
|
||||
"%s",
|
||||
QObject::tr("This software is completely open source and free. Strictly used for illegal purposes, or at your own risk. You can download it at the "
|
||||
"following address:")
|
||||
.toUtf8()
|
||||
.data());
|
||||
qInfo() << QString("QtScrcpy %1 <https://github.com/barry-ran/QtScrcpy>").arg(QCoreApplication::applicationVersion()).toUtf8();
|
||||
|
||||
int ret = a.exec();
|
||||
|
|
Loading…
Add table
Reference in a new issue