1 Star 0 Fork 2

yangxianjun/JHPhoto_BASIC

forked from liyuanbhu/JHPhoto_BASIC 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.cpp 684 Bytes
一键复制 编辑 原始数据 按行查看 历史
liyuanbhu 提交于 2019-12-31 18:33 . 增加了中文界面的支持代码。
#include "mainwindow.h"
#include <QApplication>
#include <QStandardPaths>
#include <QDate>
#include <QTranslator>
#include "MessageLogger.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
LoggerController logger;
logger.attach(new FileLogger("stderr", true));
QString path = QStandardPaths::writableLocation(QStandardPaths::TempLocation);
path = path + QDate::currentDate().toString("/yyyyMMdd.txt");
logger.attach(new FileLogger(path, true));
logger.startLogging();
QTranslator appTranslator;
appTranslator.load("jhphoto_ch.qm");
a.installTranslator(&appTranslator);
MainWindow w;
w.show();
return a.exec();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xhyangxianjun/JHPhoto_BASIC.git
git@gitee.com:xhyangxianjun/JHPhoto_BASIC.git
xhyangxianjun
JHPhoto_BASIC
JHPhoto_BASIC
master

搜索帮助