mirror of https://gitee.com/cxasm/notepad--.git
repo: 处理 v2.0.0 时期的 master 分支构建
This commit is contained in:
parent
7d04a3217a
commit
56cae8fd57
|
@ -1,6 +1,6 @@
|
|||
cmake_minimum_required(VERSION 3.20)
|
||||
|
||||
project(Notepad-- VERSION 1.23.2)
|
||||
project(Notepad-- VERSION 2.0.0)
|
||||
|
||||
# -------------- Notepad -- 全局构建配置 ------------- #
|
||||
option(USE_QT6 "使用 Qt6 进行编译本项目与随带所有内容" OFF)
|
||||
|
@ -20,6 +20,8 @@ include(cmake/SparkMacrosExtendConfig.cmake)
|
|||
if(WIN32)
|
||||
add_compile_definitions(_UNICODE= UNICODE=)
|
||||
endif()
|
||||
# 符合 2.0.0 代码预期的版本处理
|
||||
add_compile_definitions(TEST_PRE)
|
||||
|
||||
# ----------------- 构建 QSci 库 ----------------- #
|
||||
if(TRUE)
|
||||
|
|
|
@ -5355,7 +5355,7 @@ void hide_file(const QString& szFile)
|
|||
//isBakWrite 是否写保护swp文件,默认true。只有新文件时不需要,因为新文件不存在覆盖写的问题
|
||||
//isStatic 是否静默:不弹出对话框,在外部批量查找替换文件夹时使用,避免弹窗中断。默认false
|
||||
//isClearSwpFile:是否回收swp交换文件,在外部批量查找替换文件夹时使用,替换后直接删除swp文件。默认false
|
||||
bool CCNotePad::saveFile(QString fileName, ScintillaEditView* pEdit, bool isBakWrite, bool isStatic,bool /*isClearSwpFile*/)
|
||||
bool CCNotePad::saveFile(QString fileName, ScintillaEditView* pEdit, bool isBakWrite, bool isStatic,bool isClearSwpFile)
|
||||
{
|
||||
QFile srcfile(fileName);
|
||||
|
||||
|
|
Loading…
Reference in New Issue