aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2022-07-31 15:51:53 +1000
committerNeil <nyamatongwe@gmail.com>2022-07-31 15:51:53 +1000
commit926cb6f7d228b347db16a45e1f2632da475da1f0 (patch)
tree6263662cb8c023502d61b61eed34baa93ed35843 /win32
parent535e20189d5a2dd9b43a6ea0a74749a50678d631 (diff)
downloadscintilla-mirror-926cb6f7d228b347db16a45e1f2632da475da1f0.tar.gz
Added change history which can display document changes (modified, saved, ...)
in the margin or in the text.
Diffstat (limited to 'win32')
-rw-r--r--win32/Scintilla.vcxproj2
-rw-r--r--win32/deps.mak13
-rw-r--r--win32/makefile1
-rw-r--r--win32/nmdeps.mak13
-rw-r--r--win32/scintilla.mak1
5 files changed, 29 insertions, 1 deletions
diff --git a/win32/Scintilla.vcxproj b/win32/Scintilla.vcxproj
index 1ceffb325..b8c6c4152 100644
--- a/win32/Scintilla.vcxproj
+++ b/win32/Scintilla.vcxproj
@@ -36,7 +36,7 @@
<PropertyGroup>
<ConfigurationType>DynamicLibrary</ConfigurationType>
<CharacterSet>Unicode</CharacterSet>
- <PlatformToolset>v142</PlatformToolset>
+ <PlatformToolset>v143</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<UseDebugLibraries>true</UseDebugLibraries>
diff --git a/win32/deps.mak b/win32/deps.mak
index 652a4c012..98ddbaaf2 100644
--- a/win32/deps.mak
+++ b/win32/deps.mak
@@ -97,8 +97,21 @@ $(DIR_O)/CellBuffer.o: \
../src/Position.h \
../src/SplitVector.h \
../src/Partitioning.h \
+ ../src/RunStyles.h \
+ ../src/SparseVector.h \
+ ../src/ChangeHistory.h \
../src/CellBuffer.h \
../src/UniConversion.h
+$(DIR_O)/ChangeHistory.o: \
+ ../src/ChangeHistory.cxx \
+ ../include/ScintillaTypes.h \
+ ../src/Debugging.h \
+ ../src/Position.h \
+ ../src/SplitVector.h \
+ ../src/Partitioning.h \
+ ../src/RunStyles.h \
+ ../src/SparseVector.h \
+ ../src/ChangeHistory.h
$(DIR_O)/CharacterCategoryMap.o: \
../src/CharacterCategoryMap.cxx \
../src/CharacterCategoryMap.h
diff --git a/win32/makefile b/win32/makefile
index 5bb146056..5c17641ef 100644
--- a/win32/makefile
+++ b/win32/makefile
@@ -87,6 +87,7 @@ SRC_OBJS = \
$(DIR_O)/CaseConvert.o \
$(DIR_O)/CaseFolder.o \
$(DIR_O)/CellBuffer.o \
+ $(DIR_O)/ChangeHistory.o \
$(DIR_O)/CharacterCategoryMap.o \
$(DIR_O)/CharacterType.o \
$(DIR_O)/CharClassify.o \
diff --git a/win32/nmdeps.mak b/win32/nmdeps.mak
index ee7db779b..1682eb54a 100644
--- a/win32/nmdeps.mak
+++ b/win32/nmdeps.mak
@@ -97,8 +97,21 @@ $(DIR_O)/CellBuffer.obj: \
../src/Position.h \
../src/SplitVector.h \
../src/Partitioning.h \
+ ../src/RunStyles.h \
+ ../src/SparseVector.h \
+ ../src/ChangeHistory.h \
../src/CellBuffer.h \
../src/UniConversion.h
+$(DIR_O)/ChangeHistory.obj: \
+ ../src/ChangeHistory.cxx \
+ ../include/ScintillaTypes.h \
+ ../src/Debugging.h \
+ ../src/Position.h \
+ ../src/SplitVector.h \
+ ../src/Partitioning.h \
+ ../src/RunStyles.h \
+ ../src/SparseVector.h \
+ ../src/ChangeHistory.h
$(DIR_O)/CharacterCategoryMap.obj: \
../src/CharacterCategoryMap.cxx \
../src/CharacterCategoryMap.h
diff --git a/win32/scintilla.mak b/win32/scintilla.mak
index 3e089c46a..62b90385e 100644
--- a/win32/scintilla.mak
+++ b/win32/scintilla.mak
@@ -82,6 +82,7 @@ SRC_OBJS=\
$(DIR_O)\CaseConvert.obj \
$(DIR_O)\CaseFolder.obj \
$(DIR_O)\CellBuffer.obj \
+ $(DIR_O)\ChangeHistory.obj \
$(DIR_O)\CharacterCategoryMap.obj \
$(DIR_O)\CharacterType.obj \
$(DIR_O)\CharClassify.obj \