aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2024-02-01 08:56:45 +1100
committerNeil <nyamatongwe@gmail.com>2024-02-01 08:56:45 +1100
commitc6b542f84e65083552e52768db7bb4c11dcd7a64 (patch)
treee97a615381f422e67df985b18b3a50a56cb5590b /win32
parent1345bb5b0e10e213fb1943fe491679d6fe45e9b0 (diff)
downloadscintilla-mirror-c6b542f84e65083552e52768db7bb4c11dcd7a64.tar.gz
Move UndoHistory into its own module that is accessible from CellBuffer and
tests but hidden from most of Scintilla. Access through std::unique_ptr.
Diffstat (limited to 'win32')
-rw-r--r--win32/deps.mak13
-rw-r--r--win32/makefile1
-rw-r--r--win32/nmdeps.mak13
-rw-r--r--win32/scintilla.mak1
4 files changed, 28 insertions, 0 deletions
diff --git a/win32/deps.mak b/win32/deps.mak
index 5448f054d..8c36e8ddb 100644
--- a/win32/deps.mak
+++ b/win32/deps.mak
@@ -101,6 +101,7 @@ $(DIR_O)/CellBuffer.o: \
../src/SparseVector.h \
../src/ChangeHistory.h \
../src/CellBuffer.h \
+ ../src/UndoHistory.h \
../src/UniConversion.h
$(DIR_O)/ChangeHistory.o: \
../src/ChangeHistory.cxx \
@@ -437,6 +438,18 @@ $(DIR_O)/Style.o: \
../src/Geometry.h \
../src/Platform.h \
../src/Style.h
+$(DIR_O)/UndoHistory.o: \
+ ../src/UndoHistory.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 \
+ ../src/CellBuffer.h \
+ ../src/UndoHistory.h
$(DIR_O)/UniConversion.o: \
../src/UniConversion.cxx \
../src/UniConversion.h
diff --git a/win32/makefile b/win32/makefile
index e2cd4ce50..0ef6b23af 100644
--- a/win32/makefile
+++ b/win32/makefile
@@ -108,6 +108,7 @@ SRC_OBJS = \
$(DIR_O)/RunStyles.o \
$(DIR_O)/Selection.o \
$(DIR_O)/Style.o \
+ $(DIR_O)/UndoHistory.o \
$(DIR_O)/UniConversion.o \
$(DIR_O)/UniqueString.o \
$(DIR_O)/ViewStyle.o \
diff --git a/win32/nmdeps.mak b/win32/nmdeps.mak
index 62ada451c..961aba5ee 100644
--- a/win32/nmdeps.mak
+++ b/win32/nmdeps.mak
@@ -101,6 +101,7 @@ $(DIR_O)/CellBuffer.obj: \
../src/SparseVector.h \
../src/ChangeHistory.h \
../src/CellBuffer.h \
+ ../src/UndoHistory.h \
../src/UniConversion.h
$(DIR_O)/ChangeHistory.obj: \
../src/ChangeHistory.cxx \
@@ -437,6 +438,18 @@ $(DIR_O)/Style.obj: \
../src/Geometry.h \
../src/Platform.h \
../src/Style.h
+$(DIR_O)/UndoHistory.obj: \
+ ../src/UndoHistory.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 \
+ ../src/CellBuffer.h \
+ ../src/UndoHistory.h
$(DIR_O)/UniConversion.obj: \
../src/UniConversion.cxx \
../src/UniConversion.h
diff --git a/win32/scintilla.mak b/win32/scintilla.mak
index cc18f26a7..995e122d3 100644
--- a/win32/scintilla.mak
+++ b/win32/scintilla.mak
@@ -104,6 +104,7 @@ SRC_OBJS=\
$(DIR_O)\RunStyles.obj \
$(DIR_O)\Selection.obj \
$(DIR_O)\Style.obj \
+ $(DIR_O)\UndoHistory.obj \
$(DIR_O)\UniConversion.obj \
$(DIR_O)\UniqueString.obj \
$(DIR_O)\ViewStyle.obj \