Closed FantasyGmm closed 2 years ago
出错错误文件为 https://github.com/TianZerL/Anime4KCPP/blob/master/GUI/src/mainwindow.cpp 1463行 5.14之后的版本的写法才是Qt::SkipEmptyParts,所以5.12上会报错 需要改为
Qt::SkipEmptyParts
#if (QT_VERSION <= QT_VERSION_CHECK(5,14,0)) split(',', QString::SkipEmptyParts). #else split(',', Qt::SkipEmptyParts). #endif
该部分参照上方726-732的宏定义
PR吧
出错错误文件为 https://github.com/TianZerL/Anime4KCPP/blob/master/GUI/src/mainwindow.cpp 1463行 5.14之后的版本的写法才是
Qt::SkipEmptyParts
,所以5.12上会报错 需要改为该部分参照上方726-732的宏定义