fix: fixed hiDPI and forceHiDPI arg

This commit is contained in:
Qv2ray-dev 2020-03-16 13:46:55 +08:00
parent 7a34378313
commit e11b609d6b
2 changed files with 7 additions and 13 deletions

View File

@ -18,13 +18,7 @@ namespace Qv2ray::base
#define QV2RAY_LOG_NORMAL 0
#define QV2RAY_LOG_DEBUG 1
#ifndef Q_OS_WIN
#define Qv2ray_PRETTY_FUNCTION __PRETTY_FUNCTION__
#else
#define Qv2ray_PRETTY_FUNCTION __FUNCSIG__
#endif
#define __LOG_IMPL(LEVEL, MODULE, MSG) __QV2RAY_LOG_FUNC__(LEVEL, Qv2ray_PRETTY_FUNCTION, __LINE__, MODULE, MSG);
#define __LOG_IMPL(LEVEL, MODULE, MSG) __QV2RAY_LOG_FUNC__(LEVEL, Q_FUNC_INFO, __LINE__, MODULE, MSG);
#define LOG(MODULE, MSG) __LOG_IMPL(QV2RAY_LOG_NORMAL, (MODULE), (MSG));
#define DEBUG(MODULE, MSG) __LOG_IMPL(QV2RAY_LOG_DEBUG, (MODULE), (MSG));

View File

@ -5,12 +5,12 @@
namespace Qv2ray::common
{
QvCommandArgParser::QvCommandArgParser()
: QObject(), noAPIOption("noAPI", QObject::tr("Disable gRPC API subsystems.")), //
runAsRootOption("I-just-wanna-run-with-root", QObject::tr("Explicitly run Qv2ray as root.")), //
debugOption("debug", QObject::tr("Enable Debug Output")), //
hiDpiOption("hiDPI", QObject::tr("Enable HiDPI support for Qt")), //
forceHiDpiOption("hiDPI", QObject::tr("Force enable HiDPI support for Qt")), //
withToolbarOption("withToolbarPlugin", QObject::tr("Enable Qv2ray network toolbar plugin")), //
: QObject(), noAPIOption("noAPI", tr("Disable gRPC API subsystems.")), //
runAsRootOption("I-just-wanna-run-with-root", tr("Explicitly run Qv2ray as root.")), //
debugOption("debug", tr("Enable Debug Output")), //
hiDpiOption("hiDPI", tr("Enable HiDPI support for Qt")), //
forceHiDpiOption("force-hiDPI", tr("Force enable HiDPI support for Qt")), //
withToolbarOption("withToolbarPlugin", tr("Enable Qv2ray network toolbar plugin")), //
//
helpOption("FAKE"), versionOption("FAKE")
{